-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (45 loc) · 1 KB
/
docker-compose.yml
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
47
version: '3.8'
services:
icecast:
build:
context: .
dockerfile: Dockerfile.icecast
image: irirangi-icecast-image
ports:
- "8000:8000"
volumes:
- ./icecast.xml:/etc/icecast.xml
- ./logs/icecast:/var/log/icecast
- ./music:/music
- ./jingles:/usr/share/icecast/web/jingles
mpd-voice:
build:
context: .
dockerfile: Dockerfile.voice.mpd
image: irirangi-mpd-voice-image
volumes:
- ./mpd.voice.conf:/etc/mpd.conf
- ./voice:/voice
- ./mpd:/mpd
mpd:
build:
context: .
dockerfile: Dockerfile.music.mpd
image: irirangi-mpd-image
volumes:
- ./mpd/run/:/run/mpd/
- ./mpd.music.conf:/etc/mpd.conf
- ./music:/music
- ./mpd:/mpd
bot:
build:
context: .
dockerfile: Dockerfile.py.bot
image: irirangi-bot-image
env_file:
- bot.env
volumes:
- ./music:/music
- ./voice:/voice
- ./app:/app
restart: unless-stopped