-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
48 lines (47 loc) · 902 Bytes
/
docker-compose.dev.yaml
File metadata and controls
48 lines (47 loc) · 902 Bytes
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
version: "3"
services:
web:
image: whizzplayer:web
build:
context: ./web
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker
ports:
- 3000
back:
image: whizzplayer:back
build:
context: ./back
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker
volumes:
- "./uploads/:/uploads"
devices:
- "/dev/snd"
ports:
- 5000
api:
image: whizzplayer:api
build:
context: ./api
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker
env_file:
- ./api/.docker.env
volumes:
- "./uploads/:/uploads"
- "./config/default.json:/default.json"
ports:
- 4000
proxy:
image: whizzplayer:proxy
build:
context: ./proxy
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker
ports:
- 80:80