mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-02-20 07:46:18 -05:00
21 lines
621 B
YAML
21 lines
621 B
YAML
# If you change the FLASK_PORT, do not forget to change it in ports and healthcheck as well.
|
|
services:
|
|
calibre-web-automated-book-downloader:
|
|
build :
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
FLASK_PORT: 8084
|
|
DEBUG: true
|
|
BOOK_LANGUAGE: en
|
|
USE_BOOK_TITLE: true
|
|
CUSTOM_DNS: cloudflare
|
|
USE_DOH: true
|
|
ports:
|
|
- 8084:8084
|
|
restart: unless-stopped
|
|
volumes:
|
|
# This is where the books will be downloaded to, usually it would be
|
|
# the same as whatever you gave in "calibre-web-automated"
|
|
- /tmp/data/calibre-web/ingest:/cwa-book-ingest
|