-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (26 loc) · 677 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (26 loc) · 677 Bytes
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
version: '3.7'
services:
livehealthchecks.ui:
image: livehealthchecks.ui
build:
context: .
dockerfile: LiveHealthChecks.UI/Dockerfile
environment:
- ASPNETCORE_URLS=https://+;http://+
- ASPNETCORE_HTTPS_PORT=8001
- ASPNETCORE_ENVIRONMENT=Production
ports:
- "8001:443"
- "8000:80"
react-livehealthchecks.ui:
image: react-livehealthchecks.ui
build:
context: .
dockerfile: react-livehealthchecks-ui/Dockerfile
environment:
- ASPNETCORE_URLS=https://+;http://+
- ASPNETCORE_HTTPS_PORT=7001
- ASPNETCORE_ENVIRONMENT=Production
ports:
- "7001:443"
- "7000:80"