25 lines
653 B
YAML
25 lines
653 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
abp_host:
|
|
image: abp/host
|
|
environment:
|
|
ASPNETCORE_ENVIRONMENT: "Staging"
|
|
ConnectionStrings__Default: "Server=10.0.75.1; Database=jjDb; User=jjUser; Password=YourStrongPassword;TrustServerCertificate=True;"
|
|
App__ServerRootAddress: "http://localhost:44311/"
|
|
App__ClientRootAddress: "http://localhost:4200/"
|
|
App__CorsOrigins: "http://localhost:4200"
|
|
TZ: "America/Toronto"
|
|
Kestrel__Endpoints__Http__Url: "http://+:80"
|
|
ports:
|
|
- "44311:80"
|
|
volumes:
|
|
- "./Host-Logs:/app/App_Data/Logs"
|
|
restart: always
|
|
|
|
abp_ng:
|
|
image: abp/ng
|
|
ports:
|
|
- "4200:80"
|