-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInnDataBase.yml
More file actions
executable file
·44 lines (40 loc) · 957 Bytes
/
Copy pathInnDataBase.yml
File metadata and controls
executable file
·44 lines (40 loc) · 957 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
version: '2'
services:
mongodb-user:
image: mongo:latest
container_name: "mongodb-user"
network_mode: 'host'
hostname: localhost
ports:
- 27017:27017
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
network_mode: 'host'
hostname: localhost
ports:
- 15672:15672
- 5672:5672
mysql-user:
container_name: "mysql-user"
image: mysql:latest
network_mode: 'host'
hostname: localhost
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=root
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.5.2
container_name: elasticsearch
network_mode: 'host'
hostname: localhost
environment:
- node.name=elasticsearch
- cluster.name=elasticsearch
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- 9200:9200
- 9300:9300