-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (39 loc) · 918 Bytes
/
docker-compose.yml
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: "3.9"
services:
master-server:
build: ./master-server
ports:
- "3000:3000"
networks:
- default
blockchain-server:
build: ./blockchain-server
ports:
- "5000:5000"
environment:
- ESCROW_MNEMONIC=moral service assist divide episode knee orchard approve blue bicycle bind problem surface dream antenna town convince onion area better tornado swim wash able parade
networks:
- default
db-server:
build: ./db-server
ports:
- "5001:5001"
networks:
- default
mysql-db:
image: "mysql:latest"
command: mysqld --default-authentication-plugin=mysql_native_password
volumes:
- mugo-mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=admin
- MYSQL_DATABASE=mugo
networks:
- default
volumes:
mugo-mysql:
driver: local
networks:
default:
name: mugo
driver: bridge