-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 811 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 811 Bytes
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
version: '2.1'
services:
rabbitmq:
image: rabbitmq:management
ports:
- 5672:5672
- 15672:15672
networks:
- backend
mongodb:
image: mongo:latest
ports:
- 27017:27017
command: mongod --smallfiles
volumes:
- ./var/mongo:/data
networks:
- backend
mysql:
image: mysql:latest
ports:
- 9999:3306
environment:
- MYSQL_ROOT_PASSWORD=123qweasd
- MYSQL_ROOT_HOST=%
- MYSQL_DATABASE=rexoubapp
- MYSQL_USER=rexoubapp
- MYSQL_PASSWORD=rexoubapp
networks:
- backend
networks:
backend:
driver: bridge
ipam:
config:
- subnet: 10.5.0.0/16
gateway: 10.5.0.1
aux_addresses:
mysql: 10.5.0.5
mongodb: 10.5.0.6
rabbitmq: 10.5.0.7