-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
51 lines (40 loc) · 871 Bytes
/
docker-compose.yaml
File metadata and controls
51 lines (40 loc) · 871 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
46
47
48
49
50
51
version: "2.4"
services:
localnet:
build: containers/localnet
ports:
- "7950:7950"
environment:
- MX_LT_ELASTIC_ENABLED
- MX_LT_NUM_SHARDS
- MX_LT_CUSTOM_EGLD_ADDRESS
mysql:
image: "mysql:latest"
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=api
api:
build: containers/api
ports:
- "3001:3001"
elastic:
image: elasticsearch:7.17.8
environment:
ES_JAVA_OPTS: "-Xms4g -Xmx4g"
discovery.type: single-node
redis:
image: "redis:alpine"
command: redis-server
environment:
- REDIS_REPLICATION_MODE=master
rabbitmq:
image: rabbitmq:3.11.8
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
xexplorer:
build: containers/xexplorer
ports:
- "3002:3002"