-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.override.yml
90 lines (80 loc) · 1.94 KB
/
docker-compose.override.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
services:
consul:
command: consul agent -dev -log-level=warn -ui -client=0.0.0.0
hostname: consul
container_name: consul
ports:
- "8500:8500"
nosqldata:
container_name: mongo
ports:
- "27017:27017"
volumes:
- ${HOST_VOLUMES_PATH}/mongo:/data/db
postgres:
container_name: postgres
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
PGDATA: /data/postgres
volumes:
- ${HOST_VOLUMES_PATH}/postgres:/data/postgres
ports:
- "5432:5432"
restart: unless-stopped
cache:
container_name: cache
command: redis-server --requirepass 123456
ports:
- "6379:6379"
volumes:
- ${HOST_VOLUMES_PATH}/redis/redis-data:/var/lib/redis
- ${HOST_VOLUMES_PATH}/redis/redis.conf:/usr/local/etc/redis/redis.conf
seq:
container_name: seq
environment:
- ACCEPT_EULA=Y
ports:
- "5341:80"
volumes:
- ${HOST_VOLUMES_PATH}/seq:/data
rabbitmq:
container_name: event-bus
ports:
- "5672:5672"
- "15672:15672"
definition.api:
container_name: definition.api
environment:
- ASPNETCORE_ENVIRONMENT=${ENV}
- ASPNETCORE_URLS=http://+:80
ports:
- "5001:80"
company.api:
container_name: company.api
environment:
- ASPNETCORE_ENVIRONMENT=${ENV}
- ASPNETCORE_URLS=http://+:80
ports:
- "5002:80"
job.api:
container_name: job.api
environment:
- ASPNETCORE_ENVIRONMENT=${ENV}
- ASPNETCORE_URLS=http://+:80
ports:
- "5003:80"
cv.api:
container_name: cv.api
environment:
- ASPNETCORE_ENVIRONMENT=${ENV}
- ASPNETCORE_URLS=http://+:80
ports:
- "5004:80"
identity.api:
container_name: identity.api
environment:
- ASPNETCORE_ENVIRONMENT=${ENV}
- ASPNETCORE_URLS=http://+:80
ports:
- "5005:80"