32 lines
822 B
YAML
32 lines
822 B
YAML
services:
|
|
navidrome:
|
|
container_name: navidrome
|
|
image: deluan/navidrome:latest
|
|
user: 1000:1000 # should be owner of volumes
|
|
# ports:
|
|
# - "4533:4533"
|
|
restart: unless-stopped
|
|
env_file:
|
|
- /srv/docker/secrets/navidrome/.env
|
|
environment:
|
|
# Optional: put your config options customization here. Examples:
|
|
ND_SCANSCHEDULE: 1m
|
|
ND_LOGLEVEL: info
|
|
ND_SESSIONTIMEOUT: 24h
|
|
ND_BASEURL: ""
|
|
ND_ENABLETRANSCODINGCONFIG: true
|
|
ND_PLUGINS_ENABLED: true
|
|
ND_PLUGINS_AUTORELOAD: true
|
|
ND_AGENTS: "audiomuseai,lastfm,spotify,deezer"
|
|
ND_DEVARTISTINFOTIMETOLIVE: 1s
|
|
volumes:
|
|
- "./data:/data"
|
|
- "/data/Data1/music:/music:ro"
|
|
networks:
|
|
npm_proxy:
|
|
ipv4_address: 192.168.97.14
|
|
|
|
networks:
|
|
npm_proxy:
|
|
external: true
|