Add navidrome-app

This commit is contained in:
2024-04-21 18:14:44 +02:00
parent aabd9ce251
commit ac9faf84d2
8 changed files with 74 additions and 84 deletions

View File

@ -0,0 +1,28 @@
#### NETWORKS
networks:
back_network:
driver: bridge
attachable: true
#### SERVICES
services:
### navidrome
navidrome:
container_name: navidrome-app
hostname: navidrome-app
image: deluan/navidrome:latest
ports:
- "4533:4533"
networks:
- back_network
restart: unless-stopped
environment:
- TZ=Europe/Paris
# Optional: put your config options customization here. Examples:
- ND_SCANSCHEDULE: 1h
- ND_LOGLEVEL: info
- ND_SESSIONTIMEOUT: 24h
- ND_BASEURL: ""
volumes:
- "./data:/data"
- "./music:/music:ro"