Add docker support

This commit is contained in:
Julian
2023-10-30 16:39:11 +01:00
parent 136ce48385
commit d58f874162
8 changed files with 178 additions and 22 deletions

18
docker-compose.debug.yml Normal file
View File

@@ -0,0 +1,18 @@
# Please refer https://aka.ms/HTTPSinContainer on how to setup an https developer certificate for your ASP.NET Core service.
version: '3.4'
services:
gerbilmanagerwebapi:
image: gerbilmanagerwebapi
build:
context: .
dockerfile: GerbilManagerWebAPI/Dockerfile
args:
- configuration=Debug
ports:
- 80:80
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ~/.vsdbg:/remote_debugger:rw