From f01a1a8ab45ed88b7c2302da6fc6c4c56b1df654 Mon Sep 17 00:00:00 2001 From: meftimes Date: Sun, 9 Nov 2025 13:37:57 -0500 Subject: [PATCH] add audiobookshelf --- audiobookshelf/audiobookshelf.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 audiobookshelf/audiobookshelf.yml diff --git a/audiobookshelf/audiobookshelf.yml b/audiobookshelf/audiobookshelf.yml new file mode 100644 index 0000000..28c3224 --- /dev/null +++ b/audiobookshelf/audiobookshelf.yml @@ -0,0 +1,24 @@ +services: + audiobookshelf: + image: ghcr.io/advplyr/audiobookshelf:latest + container_name: audiobookshelf + restart: unless-stopped + # ports: + # - 13378:80 + volumes: + - /media/downloads/books/audiobookshelf:/audiobooks + - ./config:/config + - ./metadata:/metadata + environment: + - TZ=America/New_York + labels: + - "traefik.enable=true" + - "traefik.http.routers.audiobookshelf.entrypoints=websecure" + - "traefik.http.routers.audiobookshelf.rule=Host(`audiobookshelf.meftimes.com`)" + # - "traefik.http.services.audiobookshelf.loadbalancer.server.port=80" + networks: + - proxy + +networks: + proxy: + external: true