Files
jsmr/docker-compose.yml
Brian Bicknell ab3524ea20
Some checks failed
ci / build-test (push) Has been cancelled
ci / publish-image (push) Has been cancelled
Added docker-compose. Updated startups for API and Web layer.
2026-02-24 00:25:03 -05:00

27 lines
501 B
YAML

services:
api:
build:
context: .
dockerfile: JSMR.Api/Dockerfile
ports:
- "5000:8080"
environment:
ASPNETCORE_ENVIRONMENT: ${ASPNETCORE_ENVIRONMENT:-Production}
ConnectionStrings__AppDb: ${APPDB_CONN}
Seq__ServerUrl: ${SEQ_URL:-}
networks:
- app-net
web:
build:
context: .
dockerfile: JSMR.UI.Blazor/Dockerfile
ports:
- "5001:80"
depends_on:
- api
networks:
- app-net
networks:
app-net: {}