audiobookshelf/docker-compose.yml
revilo951 7b83ab8970
Add restart and fix volumes
Added `restart: unless-stopped`
Adjust volumes - probably shouldn't be scattering the volumes around the root dir?
https://docs.docker.com/compose/compose-file/compose-file-v3/#short-syntax-3
2022-07-18 10:12:02 +10:00

14 lines
273 B
YAML

### EXAMPLE DOCKER COMPOSE ###
version: "3.7"
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf
ports:
- 13378:80
volumes:
- ./audiobooks:/audiobooks
- ./metadata:/metadata
- ./config:/config
restart: unless-stopped