From b3b358bb3304521a9678bce814198997856d1b8b Mon Sep 17 00:00:00 2001 From: Alex Kelleher Date: Tue, 6 Aug 2024 17:39:25 +0200 Subject: [PATCH] added audiobookshelf compose file --- audiobookshelf/compose.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 audiobookshelf/compose.yml diff --git a/audiobookshelf/compose.yml b/audiobookshelf/compose.yml new file mode 100644 index 0000000..4317343 --- /dev/null +++ b/audiobookshelf/compose.yml @@ -0,0 +1,25 @@ +# https://github.com/advplyr/audiobookshelf +# https://www.audiobookshelf.org/ + +# Audiobookshelf is a self-hosted audiobook and podcast server. + +services: + audiobookshelf: + container_name: "audiobookshelf" + image: "ghcr.io/advplyr/audiobookshelf:latest" + ports: + - "8065:80" + restart: "unless-stopped" + volumes: + - "metadata:/metadata" + - "config:/config" + - "audiobooks:/audiobooks" + - "podcasts:/podcasts" + # - "path-to-your-audiobooks:/audiobooks" # Uncomment and replace with your audiobooks path + # - "path-to-your-podcasts:/podcasts" # Uncomment and replace with your podcasts path + +volumes: + metadata: + config: + audiobooks: + podcasts: