-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
35 lines (33 loc) · 963 Bytes
/
docker-compose.debug.yml
File metadata and controls
35 lines (33 loc) · 963 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
28
29
30
31
32
33
34
35
# Please refer https://aka.ms/HTTPSinContainer on how to setup an https developer certificate for your ASP .NET Core service.
version: '3.4'
services:
aspnetapp:
image: aspnetapp
build:
context: .
dockerfile: ASPNET.APP/Dockerfile
ports:
- 5080:80
- 5443:443
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+;http://+
- ASPNETCORE_HTTPS_PORT=5443
- ASPNETCORE_Kestrel__Certificates__Default__Password=s3Cr3Td3V3l0P3r
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/DevelopmentCert.pfx
volumes:
- ~/.vsdbg:/remote_debugger:rw
- ~/AppData/Roaming/ASP.NET/Https:/https/
quasarapp:
image: quasarapp
build:
context: quasar-app
dockerfile: ./Dockerfile
environment:
NODE_ENV: development
ports:
- 8080:8080
- 9229:9229
volumes:
- ./quasar-app/:/usr/src/app
command: "dev -m pwa"