This commit is contained in:
2026-04-29 01:53:16 +03:00
commit ba6bfc5ed3
14 changed files with 1338 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: "3.9"
services:
manga:
build: .
image: manga-downloader:latest
container_name: manga-downloader
volumes:
- ./output:/app/output
- ./state:/app/state
environment:
- PYTHONUNBUFFERED=1
# Chromium требует достаточно /dev/shm
shm_size: "2gb"
stdin_open: true
tty: true
# Переопределяется при запуске через:
# docker compose run manga download <URL> --format cbz
# docker compose run manga analyze <URL>
command: ["--help"]