From 74db523348f46d7c7487a1b4f70c189523f6e532 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Fri, 21 Nov 2025 19:11:10 -0500 Subject: [PATCH] Add docker-compose configuration for Lazylibrarian service --- lazylibrarian/docker-compose.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lazylibrarian/docker-compose.yml diff --git a/lazylibrarian/docker-compose.yml b/lazylibrarian/docker-compose.yml new file mode 100644 index 0000000..0f426f4 --- /dev/null +++ b/lazylibrarian/docker-compose.yml @@ -0,0 +1,24 @@ +--- +version: "2.1" +services: + lazylibrarian: + image: lscr.io/linuxserver/lazylibrarian:latest + container_name: lazylibrarian + environment: + - PUID=1000 + - PGID=1006 + - TZ=America/New_York + #- DOCKER_MODS=linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg #optional + volumes: + - /docker-containers/lazylibrarian:/config + - /unsorted:/downloads + - /Books:/books #optional + ports: + - 5299:5299 + restart: unless-stopped +# network_mode: service:wireguard # To run through vpn service container, in turn UI port must be forwarded inside vpn. No local access unless otherwise defined + networks: # Specify network for container + - homelab +networks: # I don't know why but you have to specify the network 2x. In service, and in this tag area.. + homelab: + external: true # This option causes compose to join the above network instead of making a _default one (supposedly) \ No newline at end of file