-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
43 lines (40 loc) · 1.2 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
version: '3.4'
services:
nodemonitor:
hostname: nodemonitor
environment:
ASPNETCORE_ENVIRONMENT: "Development"
ASPNETCORE_URLS: "https://+;http://+"
ASPNETCORE_HTTPS_PORT: "55001"
ASPNETCORE_HTTP_PORT: "55000"
API_URL: nodemonitor:55000
ports:
- "55001:55001"
- "55000:55000"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
image: nodemonitor
container_name: nodemonitor_container
networks:
- docker-network
webui.server:
environment:
ASPNETCORE_ENVIRONMENT: "Development"
ASPNETCORE_URLS: "https://+;http://+"
ASPNETCORE_HTTPS_PORT: "443"
ASPNETCORE_HTTP_PORT: "80"
#ASPNETCORE_Kestrel__Certificates__Default__Password: "eistee"
#ASPNETCORE_Kestrel__Certificates__Default__Path: "/https/webui.server.pfx"
ports:
- "80:80"
- "443:443"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ~/.aspnet/https:/https:ro
image: webuiserver
container_name: webuiserver_container
networks:
- docker-network
networks:
docker-network:
external: true