From 0fe3569c42c4e0e454be344d88cda2ad35e2fd68 Mon Sep 17 00:00:00 2001 From: archsinit Date: Tue, 5 Aug 2025 01:20:14 +0900 Subject: [PATCH] Add cwa/docker-compose.yml --- cwa/docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cwa/docker-compose.yml diff --git a/cwa/docker-compose.yml b/cwa/docker-compose.yml new file mode 100644 index 0000000..952d75a --- /dev/null +++ b/cwa/docker-compose.yml @@ -0,0 +1,21 @@ +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=1000 + - PGID=1000 + # Edit to match your current timezone https://en.wikipedia.org/wiki/List_of_tz_database_time_zones + - TZ=Asia/Seoul + 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 + - ./consume:/cwa-book-ingest + # If you don't have an existing library, CWA will automatically create one at the bind provided here + - ./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 \ No newline at end of file