mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-27 21:15:23 +00:00
audio book shelf
This commit is contained in:
parent
6f1934fdc3
commit
34cdc0335b
@ -169,6 +169,7 @@ So, without further ado, here's the current list:
|
|||||||
|
|
||||||
|
|
||||||
# Media Managers
|
# Media Managers
|
||||||
|
- [Audiobookshelf](apps/media/audiobookshelf.md) - audiobooks
|
||||||
- [Bazarr](apps/media/bazarr.md) - subtitles
|
- [Bazarr](apps/media/bazarr.md) - subtitles
|
||||||
- [Calibre](apps/media/calibre.md) - e-books
|
- [Calibre](apps/media/calibre.md) - e-books
|
||||||
- [Deemix](apps/media/deemix.md) - music
|
- [Deemix](apps/media/deemix.md) - music
|
||||||
|
31
apps/media/audiobookshelf.md
Normal file
31
apps/media/audiobookshelf.md
Normal file
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
- [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.
|
Loading…
Reference in New Issue
Block a user