25 lines
683 B
YAML
25 lines
683 B
YAML
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
|
container_name: audiobookshelf
|
|
restart: unless-stopped
|
|
# ports:
|
|
# - 13378:80
|
|
volumes:
|
|
- /media/downloads/books/audiobookshelf:/audiobooks
|
|
- ./config:/config
|
|
- ./metadata:/metadata
|
|
environment:
|
|
- TZ=America/New_York
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.audiobookshelf.entrypoints=websecure"
|
|
- "traefik.http.routers.audiobookshelf.rule=Host(`audiobookshelf.meftimes.com`)"
|
|
# - "traefik.http.services.audiobookshelf.loadbalancer.server.port=80"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|