quintodrome/docker-compose.yml

22 lines
496 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
ND_TRANSCODINGCACHESIZE: 100MB
ND_SESSIONTIMEOUT: 30m
2020-04-03 13:50:42 -08:00
ND_BASEURL: ""
2020-01-22 15:42:56 -09:00
volumes:
- "./data:/data"
- "./music:/music"