Add docker-compose setup for ani-cli-web

This commit is contained in:
Dymas
2026-05-17 11:32:31 +02:00
parent 48efe840eb
commit 2734343904
5 changed files with 50 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
services:
ani-cli-web:
build:
context: .
dockerfile: Dockerfile
args:
ANI_CLI: ${ANI_CLI:-https://github.com/pystardust/ani-cli.git}
ANI_CLI_BRANCH: ${ANI_CLI_BRANCH:-master}
ANI_CLI_WEB: ${ANI_CLI_WEB:-https://gitea.coreplay.eu/Dymas/ani-cli-web.git}
image: ani-cli-web:latest
restart: unless-stopped
ports:
- "${ANI_CLI_WEB_PORT:-8421}:8421"
environment:
UPDATE_ON_START: ${UPDATE_ON_START:-false}
ANI_CLI_WEB_HOST: 0.0.0.0
ANI_CLI_WEB_PORT: ${ANI_CLI_WEB_PORT:-8421}
ANI_CLI_WEB_ALLOW_REMOTE: ${ANI_CLI_WEB_ALLOW_REMOTE:-false}
ANI_CLI_WEB_REMOTE_TOKEN: ${ANI_CLI_WEB_REMOTE_TOKEN:-}
ANI_CLI_DOWNLOAD_DIR: /downloads
volumes:
- ./downloads:/downloads
- ./.ani-cli-web:/app/.ani-cli-web