mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-18 18:54:03 +00:00
* refactor: streamline OxiCloud installation process by using prebuilt binaries * oxicloud: take the prebuilt binary in the update too Upstream now attaches musl tarballs to every release (AtalayaLabs/ OxiCloud#533), so the update no longer has to install a Rust toolchain and Node and compile for up to 35 minutes. That compile is also what broke #16216: a release whose source did not build left users with a failed install and no way forward. The tarball carries one top-level directory, which the deploy helper strips, so the binary lands at /opt/oxicloud/oxicloud. The frontend is baked into it, so the SPA build and OXICLOUD_STATIC_PATH both go; the variable is commented out rather than removed, since a stale ./static path would otherwise point at a directory that no longer exists. migrate-nfc-filenames is gone as a separate binary - it is now a subcommand, oxicloud migrate nfc-filenames - so the update removes the old one. ffmpeg replaces build-essential: the server forks it for video thumbnails and it is the one runtime dependency the musl build still needs from the system. Defaults drop to 2 CPU and 2048 MB, which were sized for the compile. * oxicloud: install ffmpeg on update as well The install gained it, the update did not, so a container created before this change would never get it. The musl binary forks ffmpeg for video thumbnails; without it that one feature stays silently unavailable.
66 lines
2.0 KiB
Bash
66 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: vhsdream
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/DioCrafts/OxiCloud
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y ffmpeg
|
|
msg_ok "Installed Dependencies"
|
|
|
|
PG_VERSION="17" setup_postgresql
|
|
PG_DB_NAME="oxicloud" PG_DB_USER="oxicloud" setup_postgresql_db
|
|
fetch_and_deploy_gh_release "OxiCloud" "DioCrafts/OxiCloud" "prebuild" "latest" "/opt/oxicloud" "oxicloud-*-$(arch_resolve x86_64 aarch64)-unknown-linux-musl.tar.gz"
|
|
install -m 755 /opt/oxicloud/oxicloud /usr/local/bin/oxicloud
|
|
|
|
msg_info "Configuring OxiCloud"
|
|
mkdir -p {/mnt/oxicloud,/etc/oxicloud}
|
|
DATABASE_URL="postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost/${PG_DB_NAME}"
|
|
sed -e 's|OXICLOUD_STORAGE_PATH=.*|OXICLOUD_STORAGE_PATH=/mnt/oxicloud|' \
|
|
-e 's|OXICLOUD_SERVER_HOST=.*|OXICLOUD_SERVER_HOST=0.0.0.0|' \
|
|
-e 's|^OXICLOUD_STATIC_PATH=|#OXICLOUD_STATIC_PATH=|' \
|
|
-e "s|^#OXICLOUD_BASE_URL=.*|OXICLOUD_BASE_URL=http://${LOCAL_IP}:8086|" \
|
|
-e "s|OXICLOUD_DB_CONNECTION_STRING=.*|OXICLOUD_DB_CONNECTION_STRING=${DATABASE_URL}|" \
|
|
-e "s|^DATABASE_URL=.*|DATABASE_URL=${DATABASE_URL}|" \
|
|
-e "s|^#OXICLOUD_JWT_SECRET=.*|OXICLOUD_JWT_SECRET=$(openssl rand -hex 32)|" \
|
|
/opt/oxicloud/example.env >/etc/oxicloud/.env
|
|
chmod 600 /etc/oxicloud/.env
|
|
msg_ok "Configured OxiCloud"
|
|
|
|
msg_info "Creating OxiCloud Service"
|
|
cat <<EOF >/etc/systemd/system/oxicloud.service
|
|
[Unit]
|
|
Description=OxiCloud Service
|
|
After=network.target postgresql.service
|
|
Requires=postgresql.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=/opt/oxicloud
|
|
EnvironmentFile=/etc/oxicloud/.env
|
|
ExecStart=/usr/local/bin/oxicloud
|
|
Restart=always
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now oxicloud
|
|
msg_ok "Created OxiCloud Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|