-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
62 lines (56 loc) · 1.44 KB
/
docker-compose.yaml
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
55
56
57
58
59
60
61
62
version: '3'
services:
frontend:
env_file:
- "./.env"
environment:
REACT_APP_SNAPCAST_HOST: "ws://localhost:1780"
build:
target: dev
ports:
- "3000:3000"
volumes:
- "/app/node_modules"
- "./:/app/"
snapcast-server:
build:
dockerfile: docker/DockerfileSnapcast
target: server
ports:
- "1780:1780"
- "1704:1704"
snapcast-client:
command:
- "--logfilter=warning"
- "--instance=1"
build:
dockerfile: docker/DockerfileSnapcast
target: client
snapcast-client2:
command:
- "--logfilter=warning"
- "--instance=2"
build:
dockerfile: docker/DockerfileSnapcast
target: client
snapcast-client3:
command:
- "--logfilter=warning"
- "--instance=3"
build:
dockerfile: docker/DockerfileSnapcast
target: client
snapcast-client4:
command:
- "--logfilter=warning"
- "--instance=4"
build:
dockerfile: docker/DockerfileSnapcast
target: client
snapcast-client5:
command:
- "--logfilter=warning"
- "--instance=3"
build:
dockerfile: docker/DockerfileSnapcast
target: client