diff --git a/ct/ampache.sh b/ct/ampache.sh deleted file mode 100644 index 1c4d6415e..000000000 --- a/ct/ampache.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/ampache/ampache - -APP="Ampache" -var_tags="${var_tags:-music}" -var_disk="${var_disk:-5}" -var_cpu="${var_cpu:-4}" -var_ram="${var_ram:-2048}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -var_unprivileged="${var_unprivileged:-1}" - -header_info "$APP" -variables -color -catch_errors - -function update_script() { - header_info - check_container_storage - check_container_resources - - if [[ ! -d /opt/ampache ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - if check_for_gh_release "Ampache" "ampache/ampache"; then - - msg_info "Stopping Apache" - systemctl stop apache2 - msg_ok "Stopped Apache" - - msg_info "Backing up Configuration" - cp /opt/ampache/config/ampache.cfg.php /tmp/ampache.cfg.php.backup - cp /opt/ampache/public/rest/.htaccess /tmp/ampache_rest.htaccess.backup - cp /opt/ampache/public/play/.htaccess /tmp/ampache_play.htaccess.backup - msg_ok "Backed up Configuration" - - msg_info "Backup Ampache Folder" - rm -rf /opt/ampache_backup - mv /opt/ampache /opt/ampache_backup - msg_ok "Backed up Ampache" - - fetch_and_deploy_gh_release "Ampache" "ampache/ampache" "release" "latest" "/opt/ampache" "ampache-*_all_php8.4.zip" - - msg_info "Restoring Configuration" - cp /tmp/ampache.cfg.php.backup /opt/ampache/config/ampache.cfg.php - cp /tmp/ampache_rest.htaccess.backup /opt/ampache/public/rest/.htaccess - cp /tmp/ampache_play.htaccess.backup /opt/ampache/public/play/.htaccess - chmod 664 /opt/ampache/public/rest/.htaccess /opt/ampache/public/play/.htaccess - chown -R www-data:www-data /opt/ampache - msg_ok "Restored Configuration" - - msg_info "Cleaning up" - rm -f /tmp/ampache*.backup - msg_ok "Cleaned up" - - msg_info "Starting Apache" - systemctl start apache2 - msg_ok "Started Apache" - msg_ok "Updated successfully!" - msg_custom "⚠️" "${YW}" "Complete database update by visiting: http://${LOCAL_IP}/update.php" - fi - exit -} - -start -build_container -description - -msg_ok "Completed successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" -echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/install.php${CL}" diff --git a/ct/headers/ampache b/ct/headers/ampache deleted file mode 100644 index 68d2c033d..000000000 --- a/ct/headers/ampache +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ - / | ____ ___ ____ ____ ______/ /_ ___ - / /| | / __ `__ \/ __ \/ __ `/ ___/ __ \/ _ \ - / ___ |/ / / / / / /_/ / /_/ / /__/ / / / __/ -/_/ |_/_/ /_/ /_/ .___/\__,_/\___/_/ /_/\___/ - /_/ diff --git a/frontend/public/json/ampache.json b/frontend/public/json/ampache.json deleted file mode 100644 index d16099011..000000000 --- a/frontend/public/json/ampache.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "name": "Ampache", - "slug": "ampache", - "categories": [ - 13 - ], - "date_created": "2026-01-13", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 80, - "documentation": "https://github.com/ampache/ampache/wiki", - "website": "https://ampache.org/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/ampache.webp", - "config_path": "/opt/ampache/config/ampache.cfg.php", - "description": "Ampache is a web-based audio streaming application and file manager that allows you to access your music & videos from anywhere. It features a powerful music catalog, multiple user support, transcoding, streaming, and more.", - "install_methods": [ - { - "type": "default", - "script": "ct/ampache.sh", - "resources": { - "cpu": 4, - "ram": 2048, - "hdd": 5, - "os": "debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "Complete the web-based setup at http://IP/install.php", - "type": "info" - }, - { - "text": "Database credentials are stored in `~/ampache.creds` - use only the MySQL username and password from this file", - "type": "info" - }, - { - "text": "During installation, only check 'Create Tables' - leave 'Create Database' and 'Create Database User' unchecked", - "type": "info" - } - ] -} diff --git a/install/ampache-install.sh b/install/ampache-install.sh deleted file mode 100644 index 811548ed5..000000000 --- a/install/ampache-install.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/ampache/ampache - -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 \ - flac \ - vorbis-tools \ - lame \ - ffmpeg \ - inotify-tools \ - libavcodec-extra \ - libmp3lame-dev \ - libtheora-dev \ - libvorbis-dev \ - libvpx-dev -msg_ok "Installed Dependencies" - -PHP_VERSION=8.4 PHP_MODULE=bcmath,bz2,curl,gd,imagick,intl,mbstring,mysql,sqlite3,xml,xmlrpc,zip PHP_APACHE=YES setup_php -setup_mariadb -MARIADB_DB_USER=ampache MARIADB_DB_NAME=ampache setup_mariadb_db - -fetch_and_deploy_gh_release "ampache" "ampache/ampache" "prebuild" "latest" "/opt/ampache" "ampache-*_all_php8.4.zip" - -msg_info "Setup Ampache" -rm -rf /var/www/html -ln -s /opt/ampache/public /var/www/html -mv /opt/ampache/public/rest/.htaccess.dist /opt/ampache/public/rest/.htaccess -mv /opt/ampache/public/play/.htaccess.dist /opt/ampache/public/play/.htaccess -cp /opt/ampache/config/ampache.cfg.php.dist /opt/ampache/config/ampache.cfg.php -chmod 664 /opt/ampache/public/rest/.htaccess /opt/ampache/public/play/.htaccess -msg_ok "Set up Ampache" - -msg_info "Configuring Database Connection" -sed -i 's|^database_hostname = .*|database_hostname = "localhost"|' /opt/ampache/config/ampache.cfg.php -sed -i 's|^database_name = .*|database_name = "ampache"|' /opt/ampache/config/ampache.cfg.php -sed -i 's|^database_username = .*|database_username = "ampache"|' /opt/ampache/config/ampache.cfg.php -sed -i "s|^database_password = .*|database_password = \"${MARIADB_DB_PASS}\"|" /opt/ampache/config/ampache.cfg.php -chown -R www-data:www-data /opt/ampache -msg_ok "Configured Database Connection" - -msg_info "Importing Database Schema" -mariadb -u ampache -p"${MARIADB_DB_PASS}" ampache