mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
* add docker compose examples, with traefik or caddy and without, fixes #476 * ignore the docker-compose in root, but not the one in contrib
18 lines
312 B
YAML
18 lines
312 B
YAML
version: '3.6'
|
|
|
|
volumes:
|
|
navidrome_data:
|
|
|
|
services:
|
|
|
|
navidrome:
|
|
container_name: "navidrome"
|
|
image: deluan/navidrome:latest
|
|
restart: unless-stopped
|
|
read_only: true
|
|
# user: 1000:1000
|
|
ports:
|
|
- "4533:4533"
|
|
volumes:
|
|
- "navidrome_data:/data"
|
|
#- "/mnt/music:/music:ro"
|