mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
Merge branch 'dominikhoebert:master' into master
This commit is contained in:
commit
6bca9ae33f
4
.gitignore
vendored
4
.gitignore
vendored
@ -51,3 +51,7 @@ immich/library/
|
||||
immich/postgres/
|
||||
esphome/config/
|
||||
organizr/config/
|
||||
audiobookshelf/audiobooks/
|
||||
audiobookshelf/config/
|
||||
audiobookshelf/metadata/
|
||||
audiobookshelf/podcasts/
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user