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/ immich/postgres/
esphome/config/ esphome/config/
organizr/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 ## 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 | | [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) | | [Adminer](https://www.adminer.org/) | [8081](http://localhost:8081) |
| [Alpine](https://hub.docker.com/_/alpine) | docker exec -it alpine /bin/sh | | [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) | | [Authentik](https://goauthentik.io/) | [9001](http://localhost:9001) |
| [cAdvisor](https://github.com/google/cadvisor) | [8096](http://localhost:8096) | | [cAdvisor](https://github.com/google/cadvisor) | [8096](http://localhost:8096) |
| [Cloudcmd](https://cloudcmd.io/) | [8000](http://localhost:8000) | | [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/) - [Composerize](https://www.composerize.com/)
- [Kasmweb](https://www.kasmweb.com/) - [Kasmweb](https://www.kasmweb.com/)
- [ChristianLempa/boilerplates](https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose) - [ChristianLempa/boilerplates](https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose)
## TODO
- audiobookshelf -> Homepage

View File

@ -2,7 +2,7 @@
# https://www.audiobookshelf.org/ # https://www.audiobookshelf.org/
# Audiobookshelf is a self-hosted audiobook and podcast server. # Audiobookshelf is a self-hosted audiobook and podcast server.
name: audiobookshelf
services: services:
audiobookshelf: audiobookshelf:
container_name: "audiobookshelf" container_name: "audiobookshelf"
@ -11,15 +11,14 @@ services:
- "8065:80" - "8065:80"
restart: "unless-stopped" restart: "unless-stopped"
volumes: volumes:
- "metadata:/metadata" - ./metadata:/metadata
- "config:/config" - ./config:/config
- "audiobooks:/audiobooks" - ./audiobooks:/audiobooks
- "podcasts:/podcasts" - ./podcasts:/podcasts
# - "path-to-your-audiobooks:/audiobooks" # Uncomment and replace with your audiobooks path networks:
# - "path-to-your-podcasts:/podcasts" # Uncomment and replace with your podcasts path - proxy
volumes: networks:
metadata: proxy:
config: external:
audiobooks: true
podcasts: