-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.override.yml
69 lines (65 loc) · 1.87 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
version: '3.7'
services:
nginx.ingress:
ports:
- "5000:443"
secrets:
- nginx.cert
- nginx.key
logging:
driver: gelf
options:
gelf-address: "udp://${CODECAMPER_EXTERNAL_DNS_NAME_OR_IP}:12201"
sqelf:
ports:
- "12201:12201/udp"
environment:
SEQ_ADDRESS: "http://seq"
restart: unless-stopped
seq:
environment:
- ACCEPT_EULA=Y
ports:
- "5340:80"
restart: unless-stopped
sql.data:
environment:
- SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433" # Important: In a production environment your should remove the external port
logging:
driver: gelf
options:
gelf-address: "udp://${CODECAMPER_EXTERNAL_DNS_NAME_OR_IP}:12201"
azstore.data: #Only required for local azure storage emulation via docker
ports:
- "10000:10000"
- "10001:10001"
logging:
driver: gelf
options:
gelf-address: "udp://${CODECAMPER_EXTERNAL_DNS_NAME_OR_IP}:12201"
webmvc:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
- ConnectionStrings__CodecampDbContextConnection=${CODECAMPER_AZURE_WEB_DB:-Server=sql.data;Database=CodeCamper.Web.WebMVCDb;User Id=sa;Password=Pass@word}
ports:
- "5100:80"
webstatus:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- HealthChecks-UI__HealthChecks__1__Name=Code Camper MVC Site
- HealthChecks-UI__HealthChecks__1__Uri=http://webmvc/hc
- ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
- PATH_BASE=/status
ports:
- "5107:80"
secrets:
nginx.cert:
file: ./src/ApiGateways/Nginx/nginx.cert
nginx.key:
file: ./src/ApiGateways/Nginx/nginx.key