mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Audiobookshelf service, including environment variables and volume configuration. - Added logo for Audiobookshelf. - Created template.toml for Audiobookshelf with default variables for configuration.
17 lines
314 B
YAML
17 lines
314 B
YAML
version: "3.8"
|
|
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:2.19.4
|
|
restart: unless-stopped
|
|
ports:
|
|
- 80
|
|
environment:
|
|
- TZ=UTC
|
|
volumes:
|
|
- config:/config
|
|
- metadata:/metadata
|
|
- ${AUDIOBOOKS_PATH}:/audiobooks
|
|
|
|
volumes:
|
|
config: {}
|
|
metadata: {} |