-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
49 lines (47 loc) · 1.52 KB
/
docker-compose.override.yml
File metadata and controls
49 lines (47 loc) · 1.52 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
networks:
elwarknetwork:
name: elwark_network
external: true
services:
people.api:
container_name: "elwark_people_api"
restart: always
deploy:
resources:
limits:
memory: 128M
environment:
- ASPNETCORE_ENVIRONMENT=Staging
- OTEL_EXPORTER_OTLP_ENDPOINT=http://agent:7021
- Kestrel__EndPoints__Http__Url=http://+:80
- Kestrel__EndPoints__Grpc__Url=http://+:81
- Urls__Identity=http://elwark_identity_api
- Urls__Notification.Api=http://notification_api
- Urls__World.Api=http://world_api
- ConnectionStrings__Postgresql=Host=postgresql;Database=people;Username=master_account;Password=master_password
- ConnectionStrings__Redis=redis:6379,resolveDns=True,defaultDatabase=15
- ConnectionStrings__Kafka=broker:29092
ports:
- "5001:80"
- "5002:81"
networks:
- elwarknetwork
people.webhooks:
container_name: "elwark_people_webhooks"
restart: always
deploy:
resources:
limits:
memory: 128M
environment:
- ASPNETCORE_ENVIRONMENT=Staging
- OTEL_EXPORTER_OTLP_ENDPOINT=http://agent:7021
- Kestrel__EndPoints__Http__Url=http://+:80
- Urls__Identity=http://elwark_identity_api
- Urls__Notification.Api=http://notification_api
- ConnectionStrings__Postgresql=Host=postgresql;Database=people;Username=master_account;Password=master_password
- ConnectionStrings__Kafka=broker:29092
ports:
- "5003:80"
networks:
- elwarknetwork