-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.example.yml
More file actions
46 lines (40 loc) · 1 KB
/
docker-compose.example.yml
File metadata and controls
46 lines (40 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: '3.8'
services:
mice:
container_name: mice-public
image: sillyangel/mice:dev-latest
ports:
- "40625:40625"
environment:
# Navidrome Server Configuration
# - NAVIDROME_URL=http://navidrome:4533
# - NAVIDROME_USERNAME=user
# - NAVIDROME_PASSWORD=password
# Application Port
- PORT=40625
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:40625"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
restart: unless-stopped
navidrome:
container_name: navidrome
image: deluan/navidrome:latest
ports:
- "4533:4533"
environment:
- ND_SCANINTERVAL=1m
- ND_LOGLEVEL=info
- ND_SESSIONTIMEOUT=24h
- ND_PORT=4533
# - ND_BASEURL=/navidrome
# - ND_MUSICFOLDER=/music
volumes:
- navidrome_data:/data
- navidrome_music:/music
restart: unless-stopped
volumes:
navidrome_data:
navidrome_music: