quintodrome/docker-compose.yml

19 lines
409 B
YAML
Raw Normal View History

2020-01-22 15:42:56 -09:00
# This is just an example. Customize it to your needs.
version: "3"
services:
2020-01-23 15:44:08 -09:00
navidrome:
image: deluan/navidrome:latest
2020-01-22 15:42:56 -09:00
ports:
- "4533:4533"
environment:
# All options with their default values:
ND_MUSICFOLDER: /music
ND_DATAFOLDER: /data
ND_SCANINTERVAL: 1m
ND_LOGLEVEL: info
2020-01-23 21:29:31 -09:00
ND_PORT: 4533
2020-01-22 15:42:56 -09:00
volumes:
- "./data:/data"
- "./music:/music"