Create compose file for audiobookshelf
This commit is contained in:
parent
953007d01b
commit
7d7e2c2222
28
audiobookshelf/compose.yaml
Normal file
28
audiobookshelf/compose.yaml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
services:
|
||||
audiobookshelf:
|
||||
image: ghcr.io/advplyr/audiobookshelf:2.32.1
|
||||
container_name: audiobookshelf
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/audiobookshelf/config:/config
|
||||
- $APPDATA/audiobookshelf/metadata:/metadata
|
||||
# Media
|
||||
- $MEDIADIR/audiobooks:/audiobooks
|
||||
- $MEDIADIR/podcasts:/podcasts
|
||||
environment:
|
||||
TZ: $TZ
|
||||
ports:
|
||||
- 13378:80
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.audiobookshelf.rule=Host(`audiobookshelf.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.audiobookshelf.entrypoints=https"
|
||||
# - "traefik.http.routers.audiobookshelf.tls=true"
|
||||
# - "traefik.http.services.audiobookshelf.loadbalancer.server.port=80"
|
||||
# networks:
|
||||
# - proxy
|
||||
restart: unless-stopped
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
Loading…
Reference in a new issue