Self Host Navidrome Music Server Stream
I installed Navidrome using Docker Compose. Simply point the volume to where your music is and run the install.
compose.yaml
services:
navidrome_WFZy:
image: deluan/navidrome:${VERSION}
# container_name: ${CONTAINER_NAME}
deploy:
resources:
limits:
cpus: ${CPUS}
memory: ${MEMORY_LIMIT}
restart: unless-stopped
user: 1000:1000
environment:
ND_SCANSCHEDULE: 1h
ND_LOGLEVEL: info
ND_SESSIONTIMEOUT: 24h
ND_BASEURL: “”
ports:
– ${HOST_IP}:${WEB_HTTP_PORT}:4533
volumes:
– ${APP_PATH}/data:/data
– /mnt/rclone/Onedrive/LOSSLESS:/music:ro
labels:
createdBy: “bt_apps”
networks:
– baota_netnetworks:
baota_net:
external: true
.env
VERSION=latest
CONTAINER_NAME=CONTAINER_NAME
HOST_IP=0.0.0.0
WEB_HTTP_PORT=8080
CPUS=0
MEMORY_LIMIT=0MB
APP_PATH=/www/dk_project/dk_app/navidrome/navidrome_WFZy
