-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
59 lines (53 loc) · 1.78 KB
/
Copy pathdocker-compose.override.yml
File metadata and controls
59 lines (53 loc) · 1.78 KB
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
version: '3.4'
services:
inventoryservice:
image: ${DOCKER_REGISTRY-}inventoryservice:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
#- ASPNETCORE_URLS=https://+:443;http://+:80
- ElasticConfiguration__Uri=http://elasticsearch:9200
#ports:
#- "59816:80"
#- "44398:443"
shippingservice:
image: ${DOCKER_REGISTRY-}shippingservice:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
#- ASPNETCORE_URLS=https://+:443;http://+:80
- ElasticConfiguration__Uri=http://elasticsearch:9200
#- LogConfig__ShouldLog=false
#ports:
#- "59872:80"
#- "44363:443"
bankservice:
image: ${DOCKER_REGISTRY-}bankservice:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
#- ASPNETCORE_URLS=https://+:443;http://+:80
- ElasticConfiguration__Uri=http://elasticsearch:9200
#ports:
#- "59905:80"
#- "44373:443"
logprocessor:
image: ${DOCKER_REGISTRY-}logprocessor:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
#- ASPNETCORE_URLS=https://+:443;http://+:80
- ElasticConfiguration__Uri=http://elasticsearch:9200
- ConnectionStrings__Default=User ID=${POSTGRES_USER};Password=${POSTGRES_PASSWORD};Host=${POSTGRES_HOST};Port=5432;Database=${POSTGRES_DB};
buyergateway.server:
image: ${DOCKER_REGISTRY-}buyergatewayserver:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
ports:
- "41646:80"
ui.server:
image: ${DOCKER_REGISTRY-}uiserver:dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80