From 6f6475ea2786faea3b8e349bd1a0a257773321a9 Mon Sep 17 00:00:00 2001 From: drifty Date: Thu, 16 Jan 2025 13:05:02 +0530 Subject: [PATCH] Create compose.yml --- .../calibre-web-automated/compose.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker-compose-files/calibre-web-automated/compose.yml diff --git a/docker-compose-files/calibre-web-automated/compose.yml b/docker-compose-files/calibre-web-automated/compose.yml new file mode 100644 index 0000000..ae7d401 --- /dev/null +++ b/docker-compose-files/calibre-web-automated/compose.yml @@ -0,0 +1,20 @@ +--- +services: + calibre-web-automated: + image: crocodilestick/calibre-web-automated:latest + container_name: cwa + environment: + - PUID=1000 + - PGID=100 + - TZ=UTC + - DOCKER_MODS=linuxserver/mods:universal-calibre + volumes: + - ./config:/config + - ./ingest:/cwa-book-ingest + - ./library:/calibre-library + #- /path/to/where/you/keep/your/books:/books #Optional + #- /path/to/your/gmail/credentials.json:/app/calibre-web/gmail.json #Optional + ports: + - 8083:8083 # Change the first number to change the port you want to access the Web UI, not the second + restart: unless-stopped +# external caddy handles SSL certs