Files
navidrome/docker-compose.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
496 B
YAML
Raw Normal View History

2020-01-22 19:42:56 -05:00
# This is just an example. Customize it to your needs.
version: "3"
services:
2020-01-23 19:44:08 -05:00
navidrome:
image: deluan/navidrome:latest
2020-01-22 19:42:56 -05: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-24 01:29:31 -05:00
ND_PORT: 4533
ND_TRANSCODINGCACHESIZE: 100MB
ND_SESSIONTIMEOUT: 30m
2020-04-03 17:50:42 -04:00
ND_BASEURL: ""
2020-01-22 19:42:56 -05:00
volumes:
- "./data:/data"
- "./music:/music"