mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-01 18:37:48 +08:00
30 lines
637 B
YAML
30 lines
637 B
YAML
name: audiobookshelf
|
|
|
|
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
|
container_name: audiobookshelf
|
|
volumes:
|
|
- audiobookshelf_config:/config
|
|
- audiobookshelf_metadata:/metadata
|
|
- /media:/media
|
|
environment:
|
|
- TZ=Australia/Perth
|
|
networks:
|
|
- default
|
|
- proxy
|
|
restart: unless-stopped
|
|
labels:
|
|
caddy: audiobooks.fern.garden
|
|
caddy.reverse_proxy: "{{upstreams 80}}"
|
|
|
|
networks:
|
|
default:
|
|
proxy:
|
|
external: true
|
|
|
|
volumes:
|
|
audiobookshelf_config:
|
|
name: audiobookshelf_config
|
|
audiobookshelf_metadata:
|
|
name: audiobookshelf_metadata
|