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