-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (23 loc) · 1000 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
24 lines (23 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Comic Cascade — generic example deployment.
#
# This app has NO authentication. Do not expose it directly to the internet;
# put it behind your own reverse proxy / SSO if it needs to be reachable remotely.
#
# Libraries: with no config file, every immediate subdirectory of /libraries
# becomes a library automatically (here: "comics"). Alternatively mount a
# cascade.toml (see cascade.example.toml) or set CASCADE_LIBRARY for a single folder.
services:
comic-cascade:
build: .
image: comic-cascade:local
container_name: comic-cascade
ports:
- "8080:8080"
volumes:
- ./comics:/libraries/comics:ro # point this at your comics folder (read-only)
# - ./manga:/libraries/manga:ro # add as many libraries as you like
# - ./cascade.toml:/app/cascade.toml:ro # optional explicit multi-library config
- cascade-cache:/cache # extracted-page cache (disk, LRU-bounded)
restart: unless-stopped
volumes:
cascade-cache: