-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
51 lines (47 loc) · 997 Bytes
/
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
48
49
50
51
version: '3.7'
services:
compiler-db:
image: mysql
restart: on-failure
#network_mode: "host"
ports:
- 3306
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=compiler
- MYSQL_USER=compiler
- MYSQL_PASSWORD=compiler
networks:
- backend
compiler-frontend:
image: compiler-frontend
restart: on-failure
#network_mode: "host"
depends_on:
- compiler-backend
ports:
- 3000:3000
networks:
- frontend
compiler-backend:
image: compiler-backend
restart: on-failure
#network_mode: "host"
depends_on:
- compiler-db
ports:
- 8080:8080
environment:
- DATABASE_HOST=compiler-db
- DATABASE_USER=compiler
- DATABASE_PASSWORD=compiler
- DATABASE_NAME=compiler
- DATABASE_PORT=3306
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- backend
- frontend
networks:
backend:
frontend: