forked from idcf-boat-house/boat-house-frontend
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdocker-compose.yml
92 lines (81 loc) · 1.91 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: "3"
services:
client:
build: ./client/web
restart: always
ports:
- 5000:8080
networks:
- frontend
- backend
management:
build: ./management/web
restart: always
ports:
- 5001:4000
networks:
- backend
depends_on:
- statistics-service-db
statistics-service-api:
build: ./statistics-service/api
restart: always
ports:
- 6001:80
networks:
- frontend
- backend
statistics_service_worker:
build: ./statistics-service/worker
restart: always
networks:
- frontend
- backend
statistics-service-redis:
image: redis:alpine
restart: always
ports:
- 6379:6379
networks:
- frontend
statistics-service-db:
image: postgres:9.4
restart: always
volumes:
- db-data:/var/lib/postgresql/data
networks:
- backend
product-service-api:
build: ./product-service/api
restart: always
ports:
- 7001:8080
networks:
- frontend
- backend
account-service-api:
build: ./account-service/api
restart: always
ports:
- 7002:8080
networks:
- frontend
- backend
product-service-db:
image: mysql:5.6
command: --default-authentication-plugin=mysql_native_password
restart: always
volumes:
- ./product-service/api/scripts/init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: P2ssw0rd
networks:
- frontend
- backend
networks:
frontend:
backend:
volumes:
db-data: