-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (51 loc) · 1.25 KB
/
docker-compose.yml
File metadata and controls
54 lines (51 loc) · 1.25 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
47
48
49
50
51
52
53
54
services:
pulseaudio:
image: clcain/pulseaudio
restart: unless-stopped
network_mode: host
devices:
- /dev/snd
volumes:
- /etc/localtime:/etc/localtime:ro
- ./pulseaudio/eq.conf:/eq.conf:ro
- ./pulseaudio/entrypoint.sh:/entrypoint.sh:ro
librespot:
image: clcain/librespot
restart: unless-stopped
network_mode: host
depends_on:
- pulseaudio
volumes:
- /etc/localtime:/etc/localtime:ro
- ./librespot/entrypoint.sh:/entrypoint.sh:ro
environment:
- PULSE_SERVER=tcp:localhost:4713
env_file:
- .env
shairport-sync:
image: clcain/shairport-sync
restart: unless-stopped
network_mode: host
depends_on:
- pulseaudio
volumes:
- /etc/localtime:/etc/localtime:ro
environment:
- PULSE_SERVER=tcp:localhost:4713
env_file:
- .env
entrypoint: /init
command: ["/run.sh", "-o", "pa", "-a", "${DEVICE_NAME}"]
snapclient:
image: clcain/snapclient
restart: unless-stopped
network_mode: host
depends_on:
- pulseaudio
volumes:
- /etc/localtime:/etc/localtime:ro
- ./snapclient/entrypoint.sh:/entrypoint.sh:ro
environment:
- PULSE_SERVER=tcp:localhost:4713
env_file:
- .env