21 lines
530 B
YAML
21 lines
530 B
YAML
services:
|
|
navidrome:
|
|
image: deluan/navidrome:latest
|
|
container_name: navidrome
|
|
user: 1000:1000 # should be owner of volumes
|
|
ports:
|
|
- "4533:4533"
|
|
restart: unless-stopped
|
|
#environment:
|
|
# Optional: put your config options customization here. Examples:
|
|
# ND_LOGLEVEL: debug
|
|
volumes:
|
|
- "./data:/data"
|
|
- "./music:/music:ro"
|
|
networks:
|
|
- traefik_portal
|
|
|
|
networks:
|
|
traefik_portal:
|
|
external: true
|