forked from arthurbuenobefore/test-fullstack-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
129 lines (122 loc) · 2.42 KB
/
docker-compose.yml
File metadata and controls
129 lines (122 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
version: "3"
services:
node_server:
build: ./backend
container_name: node_server
tty: true
stdin_open: true
restart: always
deploy:
resources:
limits:
cpus: '0.70'
memory: 2048M
reservations:
cpus: '0.35'
memory: 1024M
environment:
- MONGO_DB_URL=mongodb://root:root@mongo:27017/admin
- SEQ_URL=http://seq:5341
- SERVER_PORT=3001
- JWT_SECRET=jwt_secret
- DB_USER=root
- DB_PASS=password
- DB_HOST=mysql
- DB_PORT=3306
depends_on:
- mongo
- mysql
ports:
- 3001:3001
networks:
- monitoring-inside-network
vue_client:
build: ./vue-client
container_name: vue_client
tty: true
stdin_open: true
restart: always
deploy:
resources:
limits:
cpus: '0.4'
memory: 1048M
reservations:
cpus: '0.25'
memory: 512M
depends_on:
- mongo
- mysql
- node_server
ports:
- 8081:80
networks:
- monitoring-inside-network
mysql:
container_name: mysql_db
image: mysql:8.0.23
restart: always
ports:
- 3306:3306
deploy:
resources:
limits:
cpus: '0.50'
memory: 1024M
reservations:
cpus: '0.25'
memory: 512M
volumes:
- mysql:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
networks:
- monitoring-inside-network
mongo:
container_name: mongo_db
image: mongo:4.4
restart: always
deploy:
resources:
limits:
cpus: '0.50'
memory: 1024M
reservations:
cpus: '0.25'
memory: 512M
volumes:
- mongo:/data/db
ports:
- 27017:27017
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=root
networks:
- monitoring-inside-network
seq:
image: datalust/seq:2023.1
container_name: Seq
deploy:
resources:
limits:
cpus: '0.25'
memory: 512M
reservations:
cpus: '0.15'
memory: 128M
environment:
- ACCEPT_EULA=Y
restart: always
volumes:
- seq:/data
ports:
- 5341:80
networks:
- monitoring-inside-network
volumes:
mysql:
mongo:
seq:
networks:
monitoring-inside-network:
driver: bridge