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
31 lines
574 B
YAML
31 lines
574 B
YAML
version: '3.6'
|
|
|
|
volumes:
|
|
caddy_data:
|
|
navidrome_data:
|
|
|
|
services:
|
|
|
|
caddy:
|
|
container_name: "caddy"
|
|
image: caddy:2.6-alpine
|
|
restart: unless-stopped
|
|
read_only: true
|
|
volumes:
|
|
- "caddy_data:/data:rw"
|
|
- "./Caddyfile:/etc/caddy/Caddyfile:ro"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
|
|
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"
|