From 7d7e2c22229bbe28f79c02d727494ef6bb81e027 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Sun, 15 Feb 2026 21:43:42 +0100 Subject: [PATCH] Create compose file for audiobookshelf --- audiobookshelf/compose.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 audiobookshelf/compose.yaml diff --git a/audiobookshelf/compose.yaml b/audiobookshelf/compose.yaml new file mode 100644 index 0000000..ed9b4b2 --- /dev/null +++ b/audiobookshelf/compose.yaml @@ -0,0 +1,28 @@ +services: + audiobookshelf: + image: ghcr.io/advplyr/audiobookshelf:2.32.1 + container_name: audiobookshelf + volumes: + # Config + - $APPDATA/audiobookshelf/config:/config + - $APPDATA/audiobookshelf/metadata:/metadata + # Media + - $MEDIADIR/audiobooks:/audiobooks + - $MEDIADIR/podcasts:/podcasts + environment: + TZ: $TZ + ports: + - 13378:80 + # labels: + # - "traefik.enable=true" + # - "traefik.http.routers.audiobookshelf.rule=Host(`audiobookshelf.${LOCAL_DOMAIN}`)" + # - "traefik.http.routers.audiobookshelf.entrypoints=https" + # - "traefik.http.routers.audiobookshelf.tls=true" + # - "traefik.http.services.audiobookshelf.loadbalancer.server.port=80" + # networks: + # - proxy + restart: unless-stopped + +# networks: +# proxy: +# external: true \ No newline at end of file