Skip to content

Commit ecc0808

Browse files
Add default parameters to docker-compose
1 parent 45b04c0 commit ecc0808

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

aspnet-core/docker/ng/docker-compose.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ services:
77
environment:
88
ASPNETCORE_ENVIRONMENT: "Staging"
99
ConnectionStrings__Default: "Server=10.0.75.1; Database=AbpProjectNameDb; User=AbpProjectNameUser; Password=YourStrongPassword;"
10+
App__ServerRootAddress: "http://localhost:44311/"
11+
App__ClientRootAddress: "http://localhost:4200/"
1012
App__CorsOrigins: "http://localhost:4200"
1113
TZ: "America/Toronto"
14+
Kestrel__Endpoints__Http__Url: "http://+:80"
1215
ports:
13-
- "9902:80"
16+
- "44311:80"
1417
volumes:
1518
- "./Host-Logs:/app/App_Data/Logs"
1619
restart: always
@@ -19,4 +22,3 @@ services:
1922
image: abp/ng
2023
ports:
2124
- "4200:80"
22-

0 commit comments

Comments
 (0)