Skip to content

Commit

Permalink
Merge pull request #434 from solliancenet/jdh-core-api-docker-compose
Browse files Browse the repository at this point in the history
Add Core services into Docker Compose
  • Loading branch information
ciprianjichici authored Jan 11, 2024
2 parents 05f6714 + 0cc8370 commit 5c48bf6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions deploy/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
services:
core-api:
image: ${REGISTRY:-foundationallm}/core-api:${TAG:-latest}
build:
context: ../../src
dockerfile: ./dotnet/CoreAPI/Dockerfile
ports:
- "80:80"
environment:
DOTNET_URLS: http://+:80
ASPNETCORE_ENVIRONMENT: Production
AllowedHosts: '*'
Logging__Loglevel__Default: 'Debug'
Logging__Loglevel__Microsoft__AspNetCore: 'Debug'

core-job:
image: ${REGISTRY:-foundationallm}/core-job:${TAG:-latest}
build:
context: ../../src
dockerfile: ./dotnet/CoreWorker/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Production
Logging__Loglevel__Default: 'Debug'
Logging__Loglevel__Microsoft__AspNetCore: 'Debug'

management-api:
image: ${REGISTRY:-foundationallm}/management-api:${TAG:-latest}
build:
Expand Down

0 comments on commit 5c48bf6

Please sign in to comment.