-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.sql.yaml
More file actions
60 lines (59 loc) · 1.14 KB
/
docker-compose.dev.sql.yaml
File metadata and controls
60 lines (59 loc) · 1.14 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
55
56
57
58
59
60
version: "3"
services:
db:
image: jsurf/rpi-mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
TZ: UTC
volumes:
- ./mysql:/var/lib/mysql
web:
image: whizzplayer:web
build:
context: ./web
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker SQL
ports:
- 3000
back:
image: whizzplayer:back
build:
context: ./back
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker SQL
volumes:
- "./uploads/:/uploads"
devices:
- "/dev/snd"
ports:
- 5000
api:
image: whizzplayer:api
build:
context: ./api
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker SQL
depends_on:
- db
environment:
DATABASE_HOST: db
DATABASE_USER: root
DATABASE_PASS: password
volumes:
- "./uploads/:/uploads"
- "./config/default.json:/default.json"
ports:
- 4000
proxy:
image: whizzplayer:proxy
build:
context: ./proxy
dockerfile: ./Dockerfile
args:
VERSION_CODE: Dev Docker SQL
ports:
- 80:80