-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yaml
73 lines (66 loc) · 1.16 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
63
64
65
66
67
68
69
70
71
72
73
version : "3.9"
services :
front:
build:
context: ./frontend
dockerfile: Dockerfile
image: frontend_prod:local
volumes:
- front:/app/build
networks:
- pongnet
init: true
backend:
build:
context: ./backend
dockerfile: Dockerfile
image: backend_prod:local
networks:
- pongnet
depends_on:
- database
ports:
- 3001:3001
- 3004:3004
init : true
restart: always
nginx :
build:
context: ./nginx
dockerfile: Dockerfile
image: nginx_prod:local
networks:
- pongnet
volumes :
- front:/var/www/html/
depends_on:
- backend
ports:
- 8000:80
init: true
restart: always
database:
image: postgres
restart: always
env_file:
- ./.env
volumes:
- database:/var/lib/postgresql/data
networks:
- pongnet
migration:
build:
context: ./backend/code/prisma
dockerfile: Dockerfile
image: prisma_migration:local
env_file:
- ./.env
networks:
- pongnet
depends_on:
- database
volumes:
front:
database:
networks:
pongnet: