updated audiobookshelf

This commit is contained in:
dominikhoebert 2024-08-07 14:18:09 +02:00
parent 3eb7878d4f
commit 070c086923
3 changed files with 24 additions and 16 deletions

4
.gitignore vendored
View File

@ -51,3 +51,7 @@ immich/library/
immich/postgres/
esphome/config/
organizr/config/
audiobookshelf/audiobooks/
audiobookshelf/config/
audiobookshelf/metadata/
audiobookshelf/podcasts/

View File

@ -1,4 +1,4 @@
# Sammlung an simplen Docker Compose
# Ready-to-Run Docker Compose Collection
## Usage
@ -17,6 +17,7 @@ The host networking driver only works on Linux hosts, but is availabe as a beta
| [Adguard Home](https://hub.docker.com/r/adguard/adguardhome) | [3002](http://localhost:3002) 53 67 68 |
| [Adminer](https://www.adminer.org/) | [8081](http://localhost:8081) |
| [Alpine](https://hub.docker.com/_/alpine) | docker exec -it alpine /bin/sh |
| [Audiobookshelf](https://www.audiobookshelf.org/) | [8065](http://localhost:8065) |
| [Authentik](https://goauthentik.io/) | [9001](http://localhost:9001) |
| [cAdvisor](https://github.com/google/cadvisor) | [8096](http://localhost:8096) |
| [Cloudcmd](https://cloudcmd.io/) | [8000](http://localhost:8000) |
@ -92,3 +93,7 @@ The host networking driver only works on Linux hosts, but is availabe as a beta
- [Composerize](https://www.composerize.com/)
- [Kasmweb](https://www.kasmweb.com/)
- [ChristianLempa/boilerplates](https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose)
## TODO
- audiobookshelf -> Homepage

View File

@ -2,7 +2,7 @@
# https://www.audiobookshelf.org/
# Audiobookshelf is a self-hosted audiobook and podcast server.
name: audiobookshelf
services:
audiobookshelf:
container_name: "audiobookshelf"
@ -11,15 +11,14 @@ services:
- "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
- ./metadata:/metadata
- ./config:/config
- ./audiobooks:/audiobooks
- ./podcasts:/podcasts
networks:
- proxy
volumes:
metadata:
config:
audiobooks:
podcasts:
networks:
proxy:
external:
true