21 lines
601 B
YAML
21 lines
601 B
YAML
# example docker-compose.yml
|
|
|
|
version: "2.4"
|
|
services:
|
|
gonic:
|
|
restart: unless-stopped
|
|
image: sentriz/gonic:latest
|
|
environment:
|
|
- TZ
|
|
# optionally, see more available env vars in the readme
|
|
ports:
|
|
- 4747:80
|
|
volumes:
|
|
- ./data:/data # gonic db etc
|
|
- /home/criz/Medias/Music:/music:ro # your music
|
|
- /home/criz/Medias/Podcasts:/podcasts # your podcasts
|
|
- /home/criz/Medias/Playlists:/playlists # your playlists
|
|
- ./cache:/cache # transcode / covers / etc cache dir
|
|
labels:
|
|
tsdproxy.enable: "true"
|
|
tsdproxy.name: "music"
|