-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (62 loc) · 1.18 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
version: '3.1'
services:
rabbitmq:
image: rabbitmq
restart: always
ports:
- 5672:5672
redis:
image: redis
restart: always
command: redis-server --requirepass secret --appendonly yes
volumes:
- gateway-redis-data:/data
db:
image: postgres
restart: always
volumes:
- gateway-postgres-data:/var/lib/postgresql/data/pgdata
environment:
PGDATA: /var/lib/postgresql/data/pgdata
POSTGRES_PASSWORD: secret
adminer:
image: adminer
restart: always
ports:
- 8080:8080
depends_on:
- db
rates_collector:
image: ratescollector
restart: always
depends_on:
- db
- redis
stats_collector:
image: statisticscollector
restart: always
depends_on:
- db
- rabbitmq
expose:
- 80
rates_gateway_api:
image: ratesgatewayapi
restart: always
depends_on:
- db
- redis
- stats_collector
expose:
- 80
nginx:
image: nginx:latest
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- rates_gateway_api
ports:
- 4000:4000
volumes:
gateway-postgres-data:
gateway-redis-data: