Implement Kaizoku provider downloader

This commit is contained in:
Codex
2026-08-09 11:50:46 +02:00
parent 5278eda713
commit 34e3625f87
31 changed files with 19604 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
services:
kaizoku:
build:
context: .
dockerfile: Dockerfile
image: kaizoku:latest
container_name: kaizoku
restart: unless-stopped
ports:
- "${ANI_CLI_WEB_PORT:-8421}:8421"
environment:
USER_UID: ${USER_UID:-}
USER_GID: ${USER_GID:-}
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_AUTH_USERNAME: ${ANI_CLI_WEB_AUTH_USERNAME:-}
ANI_CLI_WEB_AUTH_PASSWORD: ${ANI_CLI_WEB_AUTH_PASSWORD:-}
ANI_CLI_WEB_JOB_STDOUT: ${ANI_CLI_WEB_JOB_STDOUT:-true}
ANI_CLI_DOWNLOAD_DIR: /downloads
volumes:
- ./downloads:/downloads
- ./.kaizoku:/app/.kaizoku