-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
80 lines (74 loc) · 1.6 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
74
75
76
77
78
79
80
version: '3.8'
services:
db:
image: mysql:8
container_name: football_balancer_mysql_db
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: footballBalancer
MYSQL_USER: footballBalancer_user
MYSQL_PASSWORD: footballBalancer_password
ports:
- "3306:3306"
deploy:
resources:
limits:
memory: 256M
reservations:
memory: 128M
mongodb:
image: mongo
container_name: football_balancer_mongo_db
ports:
- "27017:27017"
volumes:
- mongo_data:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
deploy:
resources:
limits:
memory: 256M
reservations:
memory: 128M
mongo-express:
image: mongo-express
container_name: football_balancer_mongo-express
restart: always
ports:
- "8081:8081"
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: root
ME_CONFIG_MONGODB_SERVER: mongodb
deploy:
resources:
limits:
memory: 256M
reservations:
memory: 128M
rabbitmq:
image: rabbitmq:3.9-management
container_name: football_balancer_rabbitmq
ports:
- "5672:5672"
- "15672:15672"
restart: always
deploy:
resources:
limits:
memory: 512M
reservations:
memory: 128M
volumes:
db_data:
mongo_data:
cache:
driver: local
networks:
default:
name: mongodb_network