19 lines
428 B
YAML
19 lines
428 B
YAML
version: "3.7"
|
|
|
|
networks:
|
|
frontend:
|
|
# add this if the network is already existing!
|
|
external: true
|
|
|
|
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
|
volumes:
|
|
- /hdd/media/audiobooks:/audiobooks
|
|
- /hdd/media/podcasts:/podcasts
|
|
- /hdd/audobookshelf/config:/config
|
|
- /hdd/audobookshelf/metadata:/metadata
|
|
restart: 'unless-stopped'
|
|
networks:
|
|
- frontend
|