mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-11 18:15:15 +02:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f252ac7427 | |||
| 10acc2f591 | |||
| a2fe78c463 | |||
| 52cf5167c9 | |||
| 39af3f3966 | |||
| 79d2b09f56 | |||
| cc5b052660 | |||
| 914451ba66 | |||
| 956a5cc197 | |||
| 425e6bfd69 | |||
| ccdc4605fa | |||
| 707ba77006 | |||
| 477bd98269 | |||
| 3c9e90fdff | |||
| 5e5b2f6514 | |||
| 49c7e229c3 | |||
| 3518637bc9 | |||
| 2b87a54afb | |||
| fa054db892 | |||
| e5283edead |
+106
-37
@@ -1,39 +1,108 @@
|
||||
title: "[Script request]: "
|
||||
labels: ["enhancement"]
|
||||
labels:
|
||||
- enhancement
|
||||
|
||||
body:
|
||||
- type: input
|
||||
attributes:
|
||||
label: Application Name
|
||||
description: Enter the application name.
|
||||
placeholder: "e.g., Home Assistant"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: Website
|
||||
description: Official website or github page.
|
||||
placeholder: "e.g., https://www.home-assistant.io/"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Description
|
||||
description: Explain what the application does and why it should be added to Proxmox VE Helper-Scripts.
|
||||
placeholder: "e.g., Home Assistant is a popular open-source platform that brings all your smart home devices together in one place. Adding it to Proxmox VE Helper-Scripts would make setup and management on Proxmox easy, letting users quickly get a powerful, self-hosted smart home system up and running."
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Due Diligence
|
||||
options:
|
||||
- label: "I have searched existing [scripts](https://community-scripts.github.io/Proxmox/scripts) and found no duplicates."
|
||||
required: true
|
||||
- label: "I have searched existing [discussions](https://github.com/community-scripts/ProxmoxVE/discussions?discussions_q=) and found no duplicate requests."
|
||||
required: true
|
||||
- label: "The application requested has 600+ stars on Github (if applicable), is older than 6 months, actively maintained and has release tarballs published."
|
||||
required: true
|
||||
- label: "I understand that not all applications will be accepted due to various reasons and criteria by the community-scripts ORG."
|
||||
required: true
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thanks for submitting your request! The team will review it and reach out if we need more information."
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for suggesting a new script for Proxmox VE Helper-Scripts.
|
||||
|
||||
Please make sure the requested application fits the scope of this project.
|
||||
Requests may be closed if the application is out of scope, abandoned, too new, not publicly verifiable, or not suitable for a reliable Proxmox VE Helper-Scripts integration.
|
||||
|
||||
General requirements:
|
||||
- The application should be self-hosted.
|
||||
- The project should have an official public source repository.
|
||||
- The project should provide official releases, tags, or release tarballs.
|
||||
- The project should be actively maintained.
|
||||
- The project should generally have at least 1,000 stars or a comparable public adoption signal.
|
||||
- The latest official release or tag should not be older than 6 months.
|
||||
- The project itself should be at least 6 months old.
|
||||
|
||||
- type: input
|
||||
id: application-name
|
||||
attributes:
|
||||
label: Application Name
|
||||
description: Enter the official application name.
|
||||
placeholder: "e.g., Home Assistant"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: official-website
|
||||
attributes:
|
||||
label: Official Website
|
||||
description: Enter the official website, documentation page, or project homepage.
|
||||
placeholder: "e.g., https://www.home-assistant.io/"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: source-repository
|
||||
attributes:
|
||||
label: Source Repository
|
||||
description: Enter the official GitHub, GitLab, Forgejo, or other public source repository URL.
|
||||
placeholder: "e.g., https://github.com/home-assistant/core"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: app-description
|
||||
attributes:
|
||||
label: Description
|
||||
description: Explain what the application does.
|
||||
placeholder: |
|
||||
Example:
|
||||
Home Assistant is an open-source platform for managing smart home devices.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: reason
|
||||
attributes:
|
||||
label: Why should this be added?
|
||||
description: Explain why this application would be useful for Proxmox VE Helper-Scripts users.
|
||||
placeholder: |
|
||||
Example:
|
||||
It is a popular self-hosted application and would be useful for users who want to run it easily in a Proxmox LXC or VM.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: installation-notes
|
||||
attributes:
|
||||
label: Installation Notes
|
||||
description: Add any relevant installation details, dependencies, ports, databases, services, or known limitations.
|
||||
placeholder: |
|
||||
Example:
|
||||
- Requires PostgreSQL
|
||||
- Uses port 8123 by default
|
||||
- Runs as a systemd service
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: checkboxes
|
||||
id: due-diligence
|
||||
attributes:
|
||||
label: Due Diligence
|
||||
description: Please confirm the following before submitting your request.
|
||||
options:
|
||||
- label: I have searched existing scripts and found no duplicate.
|
||||
required: true
|
||||
- label: I have searched existing discussions and found no duplicate request.
|
||||
required: true
|
||||
- label: The application has an official public source repository.
|
||||
required: true
|
||||
- label: The application is self-hosted and suitable for Proxmox VE Helper-Scripts.
|
||||
required: true
|
||||
- label: The application appears to be actively maintained and provides official releases, tags, or release tarballs.
|
||||
required: true
|
||||
- label: I understand that requests outside the project scope may be closed without an extensive explanation.
|
||||
required: true
|
||||
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for submitting your request.
|
||||
The team will review it and may ask for more information if needed.
|
||||
|
||||
@@ -486,15 +486,31 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
||||
|
||||
- #### 🐞 Bug Fixes
|
||||
|
||||
- Manyfold: add new dependency [@MickLesk](https://github.com/MickLesk) ([#15040](https://github.com/community-scripts/ProxmoxVE/pull/15040))
|
||||
- OpenArchiver: switch Rebuild Function [@MickLesk](https://github.com/MickLesk) ([#15042](https://github.com/community-scripts/ProxmoxVE/pull/15042))
|
||||
- CLIProxyAPI: Save management password to creds file [@tremor021](https://github.com/tremor021) ([#15051](https://github.com/community-scripts/ProxmoxVE/pull/15051))
|
||||
- Jotty: Fix wrong path test in config restore [@vhsdream](https://github.com/vhsdream) ([#15038](https://github.com/community-scripts/ProxmoxVE/pull/15038))
|
||||
- Fix for cross-seed after node upgrade [@TorinFrancis](https://github.com/TorinFrancis) ([#15025](https://github.com/community-scripts/ProxmoxVE/pull/15025))
|
||||
|
||||
- #### 🔧 Refactor
|
||||
|
||||
- Alpine-Nextcloud: Upgrade PHP and dependencies in installation script [@MickLesk](https://github.com/MickLesk) ([#15039](https://github.com/community-scripts/ProxmoxVE/pull/15039))
|
||||
- [arm64] porting stage 1: set script arm64 statuses to yes [@asylumexp](https://github.com/asylumexp) ([#15052](https://github.com/community-scripts/ProxmoxVE/pull/15052))
|
||||
|
||||
### 💾 Core
|
||||
|
||||
- #### ✨ New Features
|
||||
|
||||
- misc scripts: add support for arm64 [@asylumexp](https://github.com/asylumexp) ([#12639](https://github.com/community-scripts/ProxmoxVE/pull/12639))
|
||||
|
||||
- #### 🔧 Refactor
|
||||
|
||||
- [arm64] remove logic for custom debian arm64 template [@asylumexp](https://github.com/asylumexp) ([#15050](https://github.com/community-scripts/ProxmoxVE/pull/15050))
|
||||
|
||||
### 📚 Documentation
|
||||
|
||||
- (github): Revise script request template [@MickLesk](https://github.com/MickLesk) ([#15058](https://github.com/community-scripts/ProxmoxVE/pull/15058))
|
||||
|
||||
## 2026-06-10
|
||||
|
||||
### 🆕 New Scripts
|
||||
|
||||
+2
-1
@@ -30,7 +30,8 @@ function update_script() {
|
||||
fi
|
||||
|
||||
NODE_VERSION="24" NODE_MODULE="yarn" setup_nodejs
|
||||
|
||||
ensure_dependencies f3d
|
||||
|
||||
if check_for_gh_release "manyfold" "manyfold3d/manyfold"; then
|
||||
msg_info "Stopping Services"
|
||||
systemctl stop manyfold.target manyfold-rails.1 manyfold-default_worker.1 manyfold-performance_worker.1
|
||||
|
||||
+1
-1
@@ -43,7 +43,7 @@ function update_script() {
|
||||
msg_info "Updating Open Archiver"
|
||||
cd /opt/openarchiver
|
||||
$STD pnpm install --shamefully-hoist --frozen-lockfile --prod=false
|
||||
$STD pnpm approve-builds --yes
|
||||
$STD pnpm rebuild
|
||||
$STD pnpm run build:oss
|
||||
$STD pnpm db:migrate
|
||||
msg_ok "Updated Open Archiver"
|
||||
|
||||
@@ -14,24 +14,24 @@ network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apk add openssl
|
||||
$STD apk add nginx
|
||||
$STD apk add \
|
||||
openssl \
|
||||
nginx
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing PHP/Redis"
|
||||
$STD apk add php83-opcache
|
||||
$STD apk add php83-redis
|
||||
$STD apk add php83-apcu
|
||||
$STD apk add php83-fpm
|
||||
$STD apk add php83-sysvsem
|
||||
$STD apk add php83-ftp
|
||||
$STD apk add php83-pecl-smbclient
|
||||
$STD apk add php83-pecl-imagick
|
||||
$STD apk add php83-pecl-vips
|
||||
$STD apk add php83-exif
|
||||
$STD apk add php83-sodium
|
||||
$STD apk add php83-bz2
|
||||
$STD apk add redis
|
||||
$STD apk add \
|
||||
php85-pecl-redis \
|
||||
php85-pecl-apcu \
|
||||
php85-fpm \
|
||||
php85-sysvsem \
|
||||
php85-ftp \
|
||||
php85-pecl-smbclient \
|
||||
php85-pecl-imagick \
|
||||
php85-exif \
|
||||
php85-sodium \
|
||||
php85-bz2 \
|
||||
redis
|
||||
msg_ok "Installed PHP/Redis"
|
||||
|
||||
msg_info "Installing MySQL Database"
|
||||
@@ -134,42 +134,43 @@ server {
|
||||
location ^~ /.well-known/nodeinfo { return 301 /index.php/.well-known/nodeinfo; }
|
||||
}
|
||||
EOF
|
||||
sed -i -e 's|memory_limit = 128M|memory_limit = 512M|; $aapc.enable_cli=1' /etc/php83/php.ini
|
||||
sed -i -e 's|upload_max_file_size = 2M|upload_max_file_size = 16G|' /etc/php83/php.ini
|
||||
sed -i -E '/^php_admin_(flag|value)\[opcache/s/^/;/' /etc/php83/php-fpm.d/nextcloud.conf
|
||||
sed -i -e 's|memory_limit = 128M|memory_limit = 512M|; $aapc.enable_cli=1' /etc/php85/php.ini
|
||||
sed -i -e 's|upload_max_file_size = 2M|upload_max_file_size = 16G|' /etc/php85/php.ini
|
||||
sed -i -E '/^php_admin_(flag|value)\[opcache/s/^/;/' /etc/php85/fpm.d/nextcloud.conf
|
||||
sed -i -e 's| js;| mjs js;|' /etc/nginx/mime.types
|
||||
msg_ok "Installed Nextcloud"
|
||||
|
||||
msg_info "Adding Additional Nextcloud Packages"
|
||||
$STD apk add nextcloud-occ
|
||||
$STD apk add nextcloud-default-apps
|
||||
$STD apk add nextcloud-activity
|
||||
$STD apk add nextcloud-admin_audit
|
||||
$STD apk add nextcloud-comments
|
||||
$STD apk add nextcloud-dashboard
|
||||
$STD apk add nextcloud-doc
|
||||
$STD apk add nextcloud-encryption
|
||||
$STD apk add nextcloud-federation
|
||||
$STD apk add nextcloud-files_external
|
||||
$STD apk add nextcloud-files_sharing
|
||||
$STD apk add nextcloud-files_trashbin
|
||||
$STD apk add nextcloud-files_versions
|
||||
$STD apk add nextcloud-notifications
|
||||
$STD apk add nextcloud-sharebymail
|
||||
$STD apk add nextcloud-suspicious_login
|
||||
$STD apk add nextcloud-support
|
||||
$STD apk add nextcloud-systemtags
|
||||
$STD apk add nextcloud-user_status
|
||||
$STD apk add nextcloud-weather_status
|
||||
$STD apk add \
|
||||
nextcloud-occ \
|
||||
nextcloud-default-apps \
|
||||
nextcloud-activity \
|
||||
nextcloud-admin_audit \
|
||||
nextcloud-comments \
|
||||
nextcloud-dashboard \
|
||||
nextcloud-doc \
|
||||
nextcloud-encryption \
|
||||
nextcloud-federation \
|
||||
nextcloud-files_external \
|
||||
nextcloud-files_sharing \
|
||||
nextcloud-files_trashbin \
|
||||
nextcloud-files_versions \
|
||||
nextcloud-notifications \
|
||||
nextcloud-sharebymail \
|
||||
nextcloud-suspicious_login \
|
||||
nextcloud-support \
|
||||
nextcloud-systemtags \
|
||||
nextcloud-user_status \
|
||||
nextcloud-weather_status
|
||||
msg_ok "Added Additional Nextcloud Packages"
|
||||
|
||||
msg_info "Starting Services"
|
||||
$STD rc-service redis start
|
||||
$STD rc-update add redis default
|
||||
$STD rc-service php-fpm83 start
|
||||
$STD rc-service php-fpm85 start
|
||||
chown -R nextcloud:www-data /var/log/nextcloud/
|
||||
chown -R nextcloud:www-data /usr/share/webapps/nextcloud/
|
||||
$STD rc-service php-fpm83 restart
|
||||
$STD rc-service php-fpm85 restart
|
||||
$STD rc-service nginx start
|
||||
$STD rc-service nextcloud start
|
||||
$STD rc-update add nginx default
|
||||
@@ -179,16 +180,16 @@ msg_ok "Started Services"
|
||||
msg_info "Start Nextcloud Setup-Wizard"
|
||||
echo -e "export VISUAL=nano\nexport EDITOR=nano" >>/etc/profile
|
||||
cd /usr/share/webapps/nextcloud
|
||||
$STD su nextcloud -s /bin/sh -c "php83 occ maintenance:install \
|
||||
$STD su nextcloud -s /bin/sh -c "php85 occ maintenance:install \
|
||||
--database='mysql' --database-name $DB_NAME \
|
||||
--database-user '$DB_USER' --database-pass '$DB_PASS' \
|
||||
--admin-user '$ADMIN_USER' --admin-pass '$ADMIN_PASS' \
|
||||
--data-dir '/var/lib/nextcloud/data'"
|
||||
$STD su nextcloud -s /bin/sh -c 'php83 occ background:cron'
|
||||
$STD su nextcloud -s /bin/sh -c 'php85 occ background:cron'
|
||||
rm -rf /usr/share/webapps/nextcloud/apps/serverinfo
|
||||
IP4=$(/sbin/ip -o -4 addr list eth0 | awk '{print $4}' | cut -d/ -f1)
|
||||
sed -i "/0 => \'localhost\',/a \ \1 => '$IP4'," /usr/share/webapps/nextcloud/config/config.php
|
||||
su nextcloud -s /bin/sh -c 'php83 -f /usr/share/webapps/nextcloud/cron.php'
|
||||
su nextcloud -s /bin/sh -c 'php85 -f /usr/share/webapps/nextcloud/cron.php'
|
||||
msg_ok "Finished Nextcloud Setup-Wizard"
|
||||
|
||||
motd_ssh
|
||||
|
||||
@@ -38,6 +38,10 @@ quota-exceeded:
|
||||
routing:
|
||||
strategy: "round-robin"
|
||||
EOF
|
||||
|
||||
cat <<EOF >~/cliproxy.creds
|
||||
Management Password: ${MANAGEMENT_PASSWORD}
|
||||
EOF
|
||||
msg_ok "Configured CLIProxyAPI"
|
||||
|
||||
msg_info "Creating Service"
|
||||
|
||||
@@ -15,12 +15,13 @@ update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt install -y \
|
||||
libarchive-dev \
|
||||
f3d \
|
||||
git \
|
||||
libarchive-dev \
|
||||
libassimp-dev \
|
||||
libmariadb-dev \
|
||||
redis-server \
|
||||
nginx \
|
||||
libassimp-dev
|
||||
redis-server
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
setup_imagemagick
|
||||
|
||||
@@ -46,7 +46,7 @@ sed -i "s|^ENCRYPTION_KEY=.*|ENCRYPTION_KEY=$SECRET_KEY|g" /opt/openarchiver/.en
|
||||
sed -i "s|^TIKA_URL=.*|TIKA_URL=|g" /opt/openarchiver/.env
|
||||
sed -i "s|^ORIGIN=.*|ORIGIN=http://$LOCAL_IP:3000|g" /opt/openarchiver/.env
|
||||
$STD pnpm install --shamefully-hoist --frozen-lockfile --prod=false
|
||||
$STD pnpm approve-builds
|
||||
$STD pnpm rebuild
|
||||
$STD pnpm run build:oss
|
||||
$STD pnpm db:migrate
|
||||
msg_ok "Setup Open Archiver"
|
||||
|
||||
+2
-18
@@ -5707,9 +5707,7 @@ create_lxc_container() {
|
||||
esac
|
||||
}
|
||||
|
||||
# Downloads an ARM64 LXC rootfs template to $1.
|
||||
# Debian: fetches latest release from community-scripts/debian-arm64-lxc on GitHub.
|
||||
# Others: fetches from jenkins.linuxcontainers.org.
|
||||
# Downloads an ARM64 LXC rootfs template from jenkins.linuxcontainers.org.
|
||||
download_arm64_template() {
|
||||
local dest="$1" url
|
||||
|
||||
@@ -5718,21 +5716,7 @@ create_lxc_container() {
|
||||
exit 207
|
||||
}
|
||||
|
||||
if [[ "$PCT_OSTYPE" == "debian" ]]; then
|
||||
url=$(
|
||||
curl -fsSL "https://api.github.com/repos/community-scripts/debian-arm64-lxc/releases/latest" |
|
||||
jq -r --arg v "$CUSTOM_TEMPLATE_VARIANT" \
|
||||
'.assets[].browser_download_url | select(test("debian-" + $v + "-arm64-rootfs\\.tar\\.xz$"))' |
|
||||
head -n1
|
||||
)
|
||||
|
||||
[[ -n "$url" ]] || {
|
||||
msg_error "Could not find Debian ${CUSTOM_TEMPLATE_VARIANT} ARM64 template URL."
|
||||
exit 207
|
||||
}
|
||||
else
|
||||
url="https://jenkins.linuxcontainers.org/job/image-${PCT_OSTYPE}/architecture=arm64,release=${CUSTOM_TEMPLATE_VARIANT},variant=default/lastStableBuild/artifact/rootfs.tar.xz"
|
||||
fi
|
||||
url="https://jenkins.linuxcontainers.org/job/image-${PCT_OSTYPE}/architecture=arm64,release=${CUSTOM_TEMPLATE_VARIANT},variant=default/lastStableBuild/artifact/rootfs.tar.xz"
|
||||
|
||||
msg_info "Downloading ${PCT_OSTYPE^} ${CUSTOM_TEMPLATE_VARIANT} ARM64 template"
|
||||
if ! curl -fsSL -o "$dest" "$url"; then
|
||||
|
||||
Reference in New Issue
Block a user