commit cf8dc1c28f85476db8decf72d8a6bbd541cf3627 Author: ghaem Date: Wed Jan 28 10:30:10 2026 +0000 Add compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..6ca0c0b --- /dev/null +++ b/compose.yml @@ -0,0 +1,26 @@ +services: + calibre-web: + image: linuxserver/calibre-web:latest + container_name: calibre-web + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - DOCKER_MODS=linuxserver/mods:universal-calibre #optional + - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional + volumes: + - /data:/config + - /library:/books + ports: + - 8083:8083 + restart: unless-stopped + networks: + - finka-network +volumes: + data: + library: + +networks: + finka-network: + driver: bridge + external: true