-
Notifications
You must be signed in to change notification settings - Fork 60
/
docker-compose.yml
62 lines (54 loc) · 960 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: "3"
services:
gateway-api:
image: lxido/gateway-api
ports:
- 8090:8090
depends_on:
- mysql
networks:
- my-bridge
group-service:
image: lxido/group-service
ports:
- 8094:8094
depends_on:
- mysql
networks:
- my-bridge
msg-service:
image: lxido/msg-service
ports:
- 8093:8093
depends_on:
- mysql
networks:
- my-bridge
redis-service:
image: lxido/redis-service
ports:
- 8091:8091
depends_on:
- mysql
networks:
- my-bridge
user-service:
image: lxido/user-service
ports:
- 8092:8092
depends_on:
- mysql
networks:
- my-bridge
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: root
volumes:
- $PWD/mysql-init:/docker-entrypoint-initdb.d
networks:
- my-bridge
networks:
my-bridge:
driver: bridge