-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.override.yml
105 lines (94 loc) · 3.19 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
version: '3.4'
services:
seq:
environment:
- ACCEPT_EULA=Y
ports:
- "5340:80"
rabbitmq:
ports:
- "15672:15672"
- "5672:5672"
redis:
ports:
- "6379:6379"
portainer:
ports:
- "8000:8000"
- "9000:9000"
postgresdata:
environment:
- POSTGRES_USER=eshopzero
- POSTGRES_PASSWORD=7eeb43dedd28b53b69f7cd74505b3457
- PGDATA=/var/lib/postgresql/data
- PGCONF=/etc/postgresql
- PGLOG=/var/log/postgresql
ports:
- 5432:5432
gateway:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- IdentityUrl=http://identity-api
- IdentityUrlExternal=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5201
- ProductUrlHC=http://product-api/hc
- OrderUrlHC=http://order-api/hc
- IdentityUrlHC=http://identity-api/hc
- OrderApiClient=http://order-api
- ProductApiClient=http://product-api
- PORT=80
- PATH_BASE=/gateway
ports:
- "5200:80"
identity-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- OrderApiClient=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5202
- ProductApiClient=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5203
- Gateway=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5200
- GatewayClient=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5200
- WebClient=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:4000
- ConnectionString=User ID=eshopzero;Password=7eeb43dedd28b53b69f7cd74505b3457;Server=postgresdata;Database=eshopzero.identity;Integrated Security=true;Pooling=true
- PORT=80
- PATH_BASE=/identity-api
ports:
- "5201:80"
order-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- PORT=80
- IdentityUrl=http://identity-api
- IdentityUrlExternal=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5201
- EventBusConnection=rabbitmq
- EventBusUserName=${ESHOPZERO_SERVICE_BUS_USERNAME}
- EventBusPassword=${ESHOPZERO_SERVICE_BUS_PASSWORD}
- ConnectionString=User ID=eshopzero;Password=7eeb43dedd28b53b69f7cd74505b3457;Server=postgresdata;Database=eshopzero.order;Integrated Security=true;Pooling=true
- PATH_BASE=/order-api
ports:
- "5202:80"
product-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- PORT=80
- IdentityUrl=http://identity-api
- IdentityUrlExternal=http://${ESHOPZERO_EXTERNAL_DNS_NAME_OR_IP}:5201
- RedisConnection=redis
- EventBusConnection=rabbitmq
- EventBusUserName=${ESHOPZERO_SERVICE_BUS_USERNAME}
- EventBusPassword=${ESHOPZERO_SERVICE_BUS_PASSWORD}
- ConnectionString=User ID=eshopzero;Password=7eeb43dedd28b53b69f7cd74505b3457;Server=postgresdata;Database=eshopzero.product;Integrated Security=true;Pooling=true
- RedisHost=redis
- PATH_BASE=/product-api
ports:
- "5203:80"
client:
environment:
- REACT_APP_HOSTLOCAL=localhost:5200
ports:
- 4000:80
volumes:
- '.:/app'
- '/app/node_modules'