mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-06 07:36:37 -03:00
21 lines
No EOL
1.2 KiB
YAML
21 lines
No EOL
1.2 KiB
YAML
services:
|
|
calibre-web-automated:
|
|
image: crocodilestick/calibre-web-automated:latest
|
|
container_name: calibre-web-automated
|
|
environment:
|
|
# Only change these if you know what you're doing
|
|
- PUID=110
|
|
- PGID=118
|
|
# Edit to match your current timezone https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
- TZ=UTC
|
|
volumes:
|
|
# CW users migrating should stop their existing CW instance, make a copy of the config folder, and bind that here to carry over all of their user settings ect.
|
|
- ./config:/config
|
|
# This is an ingest dir, NOT a library one. Anything added here will be automatically added to your library according to the settings you have configured in CWA Settings page. All files placed here are REMOVED AFTER PROCESSING
|
|
- /mnt/external/Books/calibre-ingest:/cwa-book-ingest
|
|
# If you don't have an existing library, CWA will automatically create one at the bind provided here
|
|
- /mnt/external/Books/calibre-library:/calibre-library
|
|
ports:
|
|
# Change the first number to change the port you want to access the Web UI, not the second
|
|
- 8083:8083
|
|
restart: unless-stopped |