18 lines
557 B
YAML
18 lines
557 B
YAML
services:
|
|
comicopds:
|
|
build: .
|
|
image: comicopds:latest
|
|
ports:
|
|
- "8382:8080"
|
|
environment:
|
|
CONTENT_BASE_DIR: /library
|
|
PAGE_SIZE: "50"
|
|
#SERVER_BASE: "https://comics.example.com" # <- set to your public domain
|
|
URL_PREFIX: "" # or "/comics" if served under a subpath
|
|
OPDS_BASIC_USER: "admin"
|
|
OPDS_BASIC_PASS: "change-me"
|
|
ENABLE_WATCH: "false" # true/false (not 1/0)
|
|
volumes:
|
|
- /path/to/your/comics:/library:ro
|
|
- ./data:/data
|