From 20ff9d8c71e76f3b500d0bfd2a909f696d95d016 Mon Sep 17 00:00:00 2001 From: QYG2297248353 Date: Wed, 23 Jul 2025 09:29:47 +0000 Subject: [PATCH] Processed apps directory via GitHub Actions --- appstore/archivebox/0.7.3/docker-compose.yml | 18 +---- appstore/archivebox/0.8.5rc51/.env | 21 ++++++ appstore/archivebox/0.8.5rc51/data.yml | 67 +++++++++++++++++++ .../archivebox/0.8.5rc51/docker-compose.yml | 64 ++++++++++++++++++ .../0.8.5rc51}/envs/default.env | 0 .../0.8.5rc51}/envs/global.env | 0 .../0.8.5rc51}/scripts/init.sh | 0 .../0.8.5rc51}/scripts/uninstall.sh | 0 .../0.8.5rc51}/scripts/upgrade.sh | 0 appstore/byte-muse/{1.15.0 => 1.15.1}/.env | 0 .../byte-muse/{1.15.0 => 1.15.1}/data.yml | 0 .../{1.15.0 => 1.15.1}/docker-compose.yml | 2 +- .../byte-muse/1.15.1}/envs/default.env | 0 .../byte-muse/1.15.1}/envs/global.env | 0 appstore/byte-muse/1.15.1/scripts/init.sh | 17 +++++ .../byte-muse/1.15.1/scripts/uninstall.sh | 10 +++ appstore/byte-muse/1.15.1/scripts/upgrade.sh | 17 +++++ dockge/archivebox/docker-compose.yml | 18 +---- dockge/archivebox_0_8_5rc51/.env | 21 ++++++ .../archivebox_0_8_5rc51/docker-compose.yml | 64 ++++++++++++++++++ dockge/archivebox_0_8_5rc51/envs/default.env | 2 + dockge/archivebox_0_8_5rc51/envs/global.env | 2 + dockge/byte-muse/.env | 22 +++++- dockge/byte-muse/docker-compose.yml | 18 ++++- dockge/byte-muse_1_15_0/.env | 21 ------ dockge/byte-muse_1_15_0/docker-compose.yml | 26 ------- dockge/byte-muse_license/.env | 3 + dockge/byte-muse_license/docker-compose.yml | 14 ++++ dockge/byte-muse_license/envs/default.env | 2 + dockge/byte-muse_license/envs/global.env | 2 + 30 files changed, 348 insertions(+), 83 deletions(-) create mode 100644 appstore/archivebox/0.8.5rc51/.env create mode 100644 appstore/archivebox/0.8.5rc51/data.yml create mode 100644 appstore/archivebox/0.8.5rc51/docker-compose.yml rename appstore/{byte-muse/1.15.0 => archivebox/0.8.5rc51}/envs/default.env (100%) rename appstore/{byte-muse/1.15.0 => archivebox/0.8.5rc51}/envs/global.env (100%) rename appstore/{byte-muse/1.15.0 => archivebox/0.8.5rc51}/scripts/init.sh (100%) rename appstore/{byte-muse/1.15.0 => archivebox/0.8.5rc51}/scripts/uninstall.sh (100%) rename appstore/{byte-muse/1.15.0 => archivebox/0.8.5rc51}/scripts/upgrade.sh (100%) rename appstore/byte-muse/{1.15.0 => 1.15.1}/.env (100%) rename appstore/byte-muse/{1.15.0 => 1.15.1}/data.yml (100%) rename appstore/byte-muse/{1.15.0 => 1.15.1}/docker-compose.yml (95%) rename {dockge/byte-muse_1_15_0 => appstore/byte-muse/1.15.1}/envs/default.env (100%) rename {dockge/byte-muse_1_15_0 => appstore/byte-muse/1.15.1}/envs/global.env (100%) create mode 100644 appstore/byte-muse/1.15.1/scripts/init.sh create mode 100644 appstore/byte-muse/1.15.1/scripts/uninstall.sh create mode 100644 appstore/byte-muse/1.15.1/scripts/upgrade.sh create mode 100644 dockge/archivebox_0_8_5rc51/.env create mode 100644 dockge/archivebox_0_8_5rc51/docker-compose.yml create mode 100644 dockge/archivebox_0_8_5rc51/envs/default.env create mode 100644 dockge/archivebox_0_8_5rc51/envs/global.env delete mode 100644 dockge/byte-muse_1_15_0/.env delete mode 100644 dockge/byte-muse_1_15_0/docker-compose.yml create mode 100644 dockge/byte-muse_license/.env create mode 100644 dockge/byte-muse_license/docker-compose.yml create mode 100644 dockge/byte-muse_license/envs/default.env create mode 100644 dockge/byte-muse_license/envs/global.env diff --git a/appstore/archivebox/0.7.3/docker-compose.yml b/appstore/archivebox/0.7.3/docker-compose.yml index a3f6d4339..f70ce3cc2 100644 --- a/appstore/archivebox/0.7.3/docker-compose.yml +++ b/appstore/archivebox/0.7.3/docker-compose.yml @@ -24,21 +24,6 @@ services: restart: always volumes: - ${ARCHIVEBOX_ROOT_PATH}/data:/data - archivebox-scheduler: - command: schedule --foreground --update --every=day - container_name: scheduler-archivebox - env_file: - - ./envs/global.env - - .env - environment: - - TZ=Asia/Shanghai - - TIMEOUT=120 - - SEARCH_BACKEND_ENGINE=sonic - - SEARCH_BACKEND_HOST_NAME=archivebox-sonic - - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} - image: archivebox/archivebox:0.7.3 - volumes: - - ${ARCHIVEBOX_ROOT_PATH}/data:/data archivebox-sonic: container_name: sonic-archivebox env_file: @@ -50,5 +35,8 @@ services: expose: - 1491 image: archivebox/sonic:latest + networks: + - 1panel-network + restart: always volumes: - ${ARCHIVEBOX_ROOT_PATH}/sonic:/var/lib/sonic/store diff --git a/appstore/archivebox/0.8.5rc51/.env b/appstore/archivebox/0.8.5rc51/.env new file mode 100644 index 000000000..1603a5c87 --- /dev/null +++ b/appstore/archivebox/0.8.5rc51/.env @@ -0,0 +1,21 @@ +# 数据持久化路径 [必填] +ARCHIVEBOX_ROOT_PATH=/home/archivebox + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=8000 + +# 管理员用户名 [必填] +ADMIN_USERNAME=archivebox + +# 管理员密码 [必填] +ADMIN_PASSWORD=archivebox + +# 是否公开快照列表 [必填] +PUBLIC_INDEX=True + +# 是否公开快照内容 [必填] +PUBLIC_SNAPSHOTS=True + +# 是否允许匿名用户提交存档 [必填] +PUBLIC_ADD_VIEW=False + diff --git a/appstore/archivebox/0.8.5rc51/data.yml b/appstore/archivebox/0.8.5rc51/data.yml new file mode 100644 index 000000000..8cb57dd82 --- /dev/null +++ b/appstore/archivebox/0.8.5rc51/data.yml @@ -0,0 +1,67 @@ +additionalProperties: + formFields: + - default: "/home/archivebox" + edit: true + envKey: ARCHIVEBOX_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 8000 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number + - default: "archivebox" + edit: true + envKey: ADMIN_USERNAME + labelZh: 管理员用户名 + labelEn: Admin Username + required: true + type: text + - default: "archivebox" + edit: true + envKey: ADMIN_PASSWORD + labelZh: 管理员密码 + labelEn: Admin Password + required: true + type: password + - default: "True" + edit: true + envKey: PUBLIC_INDEX + labelZh: 是否公开快照列表 + labelEn: Whether to make the snapshot list public + required: true + type: select + values: + - label: 公开 + value: "True" + - label: 私密 + value: "False" + - default: "True" + edit: true + envKey: PUBLIC_SNAPSHOTS + labelZh: 是否公开快照内容 + labelEn: Whether to make snapshot content public + required: true + type: select + values: + - label: 公开 + value: "True" + - label: 私密 + value: "False" + - default: "False" + edit: true + envKey: PUBLIC_ADD_VIEW + labelZh: 是否允许匿名用户提交存档 + labelEn: Whether to allow anonymous users to submit archives + required: true + type: select + values: + - label: 允许 + value: "True" + - label: 禁止 + value: "False" diff --git a/appstore/archivebox/0.8.5rc51/docker-compose.yml b/appstore/archivebox/0.8.5rc51/docker-compose.yml new file mode 100644 index 000000000..ac22205db --- /dev/null +++ b/appstore/archivebox/0.8.5rc51/docker-compose.yml @@ -0,0 +1,64 @@ +networks: + 1panel-network: + external: true +services: + archivebox: + container_name: archivebox + depends_on: + - archivebox-init + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - ALLOWED_HOSTS=* + - CSRF_TRUSTED_ORIGINS=http://localhost:8000 + - SEARCH_BACKEND_ENGINE=sonic + - SEARCH_BACKEND_HOST_NAME=archivebox-sonic + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + image: archivebox/archivebox:0.8.5rc51 + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:8000 + restart: always + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/data:/data + archivebox-init: + command: archivebox init + container_name: init-archivebox + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - ALLOWED_HOSTS=* + - CSRF_TRUSTED_ORIGINS=http://localhost:8000 + - SEARCH_BACKEND_ENGINE=sonic + - SEARCH_BACKEND_HOST_NAME=archivebox-sonic + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + image: archivebox/archivebox:0.8.5rc51 + labels: + createdBy: Apps + networks: + - 1panel-network + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/data:/data + archivebox-sonic: + container_name: sonic-archivebox + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + expose: + - 1491 + image: archivebox/sonic:latest + networks: + - 1panel-network + restart: always + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/sonic:/var/lib/sonic/store diff --git a/appstore/byte-muse/1.15.0/envs/default.env b/appstore/archivebox/0.8.5rc51/envs/default.env similarity index 100% rename from appstore/byte-muse/1.15.0/envs/default.env rename to appstore/archivebox/0.8.5rc51/envs/default.env diff --git a/appstore/byte-muse/1.15.0/envs/global.env b/appstore/archivebox/0.8.5rc51/envs/global.env similarity index 100% rename from appstore/byte-muse/1.15.0/envs/global.env rename to appstore/archivebox/0.8.5rc51/envs/global.env diff --git a/appstore/byte-muse/1.15.0/scripts/init.sh b/appstore/archivebox/0.8.5rc51/scripts/init.sh similarity index 100% rename from appstore/byte-muse/1.15.0/scripts/init.sh rename to appstore/archivebox/0.8.5rc51/scripts/init.sh diff --git a/appstore/byte-muse/1.15.0/scripts/uninstall.sh b/appstore/archivebox/0.8.5rc51/scripts/uninstall.sh similarity index 100% rename from appstore/byte-muse/1.15.0/scripts/uninstall.sh rename to appstore/archivebox/0.8.5rc51/scripts/uninstall.sh diff --git a/appstore/byte-muse/1.15.0/scripts/upgrade.sh b/appstore/archivebox/0.8.5rc51/scripts/upgrade.sh similarity index 100% rename from appstore/byte-muse/1.15.0/scripts/upgrade.sh rename to appstore/archivebox/0.8.5rc51/scripts/upgrade.sh diff --git a/appstore/byte-muse/1.15.0/.env b/appstore/byte-muse/1.15.1/.env similarity index 100% rename from appstore/byte-muse/1.15.0/.env rename to appstore/byte-muse/1.15.1/.env diff --git a/appstore/byte-muse/1.15.0/data.yml b/appstore/byte-muse/1.15.1/data.yml similarity index 100% rename from appstore/byte-muse/1.15.0/data.yml rename to appstore/byte-muse/1.15.1/data.yml diff --git a/appstore/byte-muse/1.15.0/docker-compose.yml b/appstore/byte-muse/1.15.1/docker-compose.yml similarity index 95% rename from appstore/byte-muse/1.15.0/docker-compose.yml rename to appstore/byte-muse/1.15.1/docker-compose.yml index c86e081ba..d330d6b0b 100644 --- a/appstore/byte-muse/1.15.0/docker-compose.yml +++ b/appstore/byte-muse/1.15.1/docker-compose.yml @@ -11,7 +11,7 @@ services: - HTTPS_PROXY=${HTTP_PROXY} - HTTP_PROXY=${HTTP_PROXY:-} - NO_PROXY=${NO_PROXY:-} - image: envyafish/byte-muse:1.15.0 + image: envyafish/byte-muse:1.15.1 labels: createdBy: Apps networks: diff --git a/dockge/byte-muse_1_15_0/envs/default.env b/appstore/byte-muse/1.15.1/envs/default.env similarity index 100% rename from dockge/byte-muse_1_15_0/envs/default.env rename to appstore/byte-muse/1.15.1/envs/default.env diff --git a/dockge/byte-muse_1_15_0/envs/global.env b/appstore/byte-muse/1.15.1/envs/global.env similarity index 100% rename from dockge/byte-muse_1_15_0/envs/global.env rename to appstore/byte-muse/1.15.1/envs/global.env diff --git a/appstore/byte-muse/1.15.1/scripts/init.sh b/appstore/byte-muse/1.15.1/scripts/init.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/byte-muse/1.15.1/scripts/init.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/byte-muse/1.15.1/scripts/uninstall.sh b/appstore/byte-muse/1.15.1/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/appstore/byte-muse/1.15.1/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/byte-muse/1.15.1/scripts/upgrade.sh b/appstore/byte-muse/1.15.1/scripts/upgrade.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/byte-muse/1.15.1/scripts/upgrade.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/dockge/archivebox/docker-compose.yml b/dockge/archivebox/docker-compose.yml index a3f6d4339..f70ce3cc2 100644 --- a/dockge/archivebox/docker-compose.yml +++ b/dockge/archivebox/docker-compose.yml @@ -24,21 +24,6 @@ services: restart: always volumes: - ${ARCHIVEBOX_ROOT_PATH}/data:/data - archivebox-scheduler: - command: schedule --foreground --update --every=day - container_name: scheduler-archivebox - env_file: - - ./envs/global.env - - .env - environment: - - TZ=Asia/Shanghai - - TIMEOUT=120 - - SEARCH_BACKEND_ENGINE=sonic - - SEARCH_BACKEND_HOST_NAME=archivebox-sonic - - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} - image: archivebox/archivebox:0.7.3 - volumes: - - ${ARCHIVEBOX_ROOT_PATH}/data:/data archivebox-sonic: container_name: sonic-archivebox env_file: @@ -50,5 +35,8 @@ services: expose: - 1491 image: archivebox/sonic:latest + networks: + - 1panel-network + restart: always volumes: - ${ARCHIVEBOX_ROOT_PATH}/sonic:/var/lib/sonic/store diff --git a/dockge/archivebox_0_8_5rc51/.env b/dockge/archivebox_0_8_5rc51/.env new file mode 100644 index 000000000..1603a5c87 --- /dev/null +++ b/dockge/archivebox_0_8_5rc51/.env @@ -0,0 +1,21 @@ +# 数据持久化路径 [必填] +ARCHIVEBOX_ROOT_PATH=/home/archivebox + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=8000 + +# 管理员用户名 [必填] +ADMIN_USERNAME=archivebox + +# 管理员密码 [必填] +ADMIN_PASSWORD=archivebox + +# 是否公开快照列表 [必填] +PUBLIC_INDEX=True + +# 是否公开快照内容 [必填] +PUBLIC_SNAPSHOTS=True + +# 是否允许匿名用户提交存档 [必填] +PUBLIC_ADD_VIEW=False + diff --git a/dockge/archivebox_0_8_5rc51/docker-compose.yml b/dockge/archivebox_0_8_5rc51/docker-compose.yml new file mode 100644 index 000000000..ac22205db --- /dev/null +++ b/dockge/archivebox_0_8_5rc51/docker-compose.yml @@ -0,0 +1,64 @@ +networks: + 1panel-network: + external: true +services: + archivebox: + container_name: archivebox + depends_on: + - archivebox-init + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - ALLOWED_HOSTS=* + - CSRF_TRUSTED_ORIGINS=http://localhost:8000 + - SEARCH_BACKEND_ENGINE=sonic + - SEARCH_BACKEND_HOST_NAME=archivebox-sonic + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + image: archivebox/archivebox:0.8.5rc51 + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:8000 + restart: always + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/data:/data + archivebox-init: + command: archivebox init + container_name: init-archivebox + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - ALLOWED_HOSTS=* + - CSRF_TRUSTED_ORIGINS=http://localhost:8000 + - SEARCH_BACKEND_ENGINE=sonic + - SEARCH_BACKEND_HOST_NAME=archivebox-sonic + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + image: archivebox/archivebox:0.8.5rc51 + labels: + createdBy: Apps + networks: + - 1panel-network + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/data:/data + archivebox-sonic: + container_name: sonic-archivebox + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + - SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-} + expose: + - 1491 + image: archivebox/sonic:latest + networks: + - 1panel-network + restart: always + volumes: + - ${ARCHIVEBOX_ROOT_PATH}/sonic:/var/lib/sonic/store diff --git a/dockge/archivebox_0_8_5rc51/envs/default.env b/dockge/archivebox_0_8_5rc51/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/dockge/archivebox_0_8_5rc51/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/dockge/archivebox_0_8_5rc51/envs/global.env b/dockge/archivebox_0_8_5rc51/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/dockge/archivebox_0_8_5rc51/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/dockge/byte-muse/.env b/dockge/byte-muse/.env index e633719fd..7198039bd 100644 --- a/dockge/byte-muse/.env +++ b/dockge/byte-muse/.env @@ -1,3 +1,21 @@ -# WebUI 端口 [必填] -PANEL_APP_PORT_HTTP=5000 +# 数据持久化路径 [必填] +AUTO_LADY_ROOT_PATH=/home/byte-muse + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=8080 + +# 自定义挂载目录 1 +CUSTOM_MOUNT_DIRECTORY_1= + +# 自定义挂载目录 2 +CUSTOM_MOUNT_DIRECTORY_2= + +# 自定义挂载目录 3 +CUSTOM_MOUNT_DIRECTORY_3= + +# 网络代理地址 +HTTP_PROXY= + +# 跳过代理地址 +NO_PROXY=localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local diff --git a/dockge/byte-muse/docker-compose.yml b/dockge/byte-muse/docker-compose.yml index e70ac8e43..d330d6b0b 100644 --- a/dockge/byte-muse/docker-compose.yml +++ b/dockge/byte-muse/docker-compose.yml @@ -2,13 +2,25 @@ networks: 1panel-network: external: true services: - byte-muse-license: + auto-lady: container_name: byte-muse - image: envyafish/byte-muse-license:latest + env_file: + - ./envs/global.env + - .env + environment: + - HTTPS_PROXY=${HTTP_PROXY} + - HTTP_PROXY=${HTTP_PROXY:-} + - NO_PROXY=${NO_PROXY:-} + image: envyafish/byte-muse:1.15.1 labels: createdBy: Apps networks: - 1panel-network ports: - - ${PANEL_APP_PORT_HTTP}:5000 + - ${PANEL_APP_PORT_HTTP}:80 restart: always + volumes: + - ${AUTO_LADY_ROOT_PATH}/config:/data + - ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1} + - ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2} + - ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3} diff --git a/dockge/byte-muse_1_15_0/.env b/dockge/byte-muse_1_15_0/.env deleted file mode 100644 index 7198039bd..000000000 --- a/dockge/byte-muse_1_15_0/.env +++ /dev/null @@ -1,21 +0,0 @@ -# 数据持久化路径 [必填] -AUTO_LADY_ROOT_PATH=/home/byte-muse - -# WebUI 端口 [必填] -PANEL_APP_PORT_HTTP=8080 - -# 自定义挂载目录 1 -CUSTOM_MOUNT_DIRECTORY_1= - -# 自定义挂载目录 2 -CUSTOM_MOUNT_DIRECTORY_2= - -# 自定义挂载目录 3 -CUSTOM_MOUNT_DIRECTORY_3= - -# 网络代理地址 -HTTP_PROXY= - -# 跳过代理地址 -NO_PROXY=localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local - diff --git a/dockge/byte-muse_1_15_0/docker-compose.yml b/dockge/byte-muse_1_15_0/docker-compose.yml deleted file mode 100644 index c86e081ba..000000000 --- a/dockge/byte-muse_1_15_0/docker-compose.yml +++ /dev/null @@ -1,26 +0,0 @@ -networks: - 1panel-network: - external: true -services: - auto-lady: - container_name: byte-muse - env_file: - - ./envs/global.env - - .env - environment: - - HTTPS_PROXY=${HTTP_PROXY} - - HTTP_PROXY=${HTTP_PROXY:-} - - NO_PROXY=${NO_PROXY:-} - image: envyafish/byte-muse:1.15.0 - labels: - createdBy: Apps - networks: - - 1panel-network - ports: - - ${PANEL_APP_PORT_HTTP}:80 - restart: always - volumes: - - ${AUTO_LADY_ROOT_PATH}/config:/data - - ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1} - - ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2} - - ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3} diff --git a/dockge/byte-muse_license/.env b/dockge/byte-muse_license/.env new file mode 100644 index 000000000..e633719fd --- /dev/null +++ b/dockge/byte-muse_license/.env @@ -0,0 +1,3 @@ +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=5000 + diff --git a/dockge/byte-muse_license/docker-compose.yml b/dockge/byte-muse_license/docker-compose.yml new file mode 100644 index 000000000..e70ac8e43 --- /dev/null +++ b/dockge/byte-muse_license/docker-compose.yml @@ -0,0 +1,14 @@ +networks: + 1panel-network: + external: true +services: + byte-muse-license: + container_name: byte-muse + image: envyafish/byte-muse-license:latest + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:5000 + restart: always diff --git a/dockge/byte-muse_license/envs/default.env b/dockge/byte-muse_license/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/dockge/byte-muse_license/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/dockge/byte-muse_license/envs/global.env b/dockge/byte-muse_license/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/dockge/byte-muse_license/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai