From 34cdc0335bc0d7fee7250347e644777620fe06a7 Mon Sep 17 00:00:00 2001 From: Tomasz Borychowski Date: Sat, 30 Oct 2021 00:10:07 +0100 Subject: [PATCH] audio book shelf --- README.md | 1 + apps/media/audiobookshelf.md | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 apps/media/audiobookshelf.md diff --git a/README.md b/README.md index 2ec13a4..7e60511 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,7 @@ So, without further ado, here's the current list: # Media Managers +- [Audiobookshelf](apps/media/audiobookshelf.md) - audiobooks - [Bazarr](apps/media/bazarr.md) - subtitles - [Calibre](apps/media/calibre.md) - e-books - [Deemix](apps/media/deemix.md) - music diff --git a/apps/media/audiobookshelf.md b/apps/media/audiobookshelf.md new file mode 100644 index 0000000..1398317 --- /dev/null +++ b/apps/media/audiobookshelf.md @@ -0,0 +1,31 @@ +# AudioBookshelf +Self-hosted Audiobook Server. +- It takes a while to adjust the folder structure and file naming for the scanner to pick it up correctly (and then manually fixing them in the UI) +- Looks good and works nicely in a desktop browser +- Unfortunately it doesn't work on mobile + + +
+ +- [Homepage](https://www.audiobookshelf.org) +- [Github repo](https://github.com/advplyr/audiobookshelf) + + +## docker-compose.yml +```yml +--- +version: '3.3' +services: + audiobookshelf: + image: advplyr/audiobookshelf + container_name: audiobookshelf + restart: unless-stopped + ports: + - "1337:80" + volumes: + - ./config:/config + - ./metadata:/metadata + - ./audiobooks:/audiobooks +``` + +Default username is **root** with no password.