mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-03-12 10:10:07 +01:00
Add Docker for WebApi
Added docker-compose && Dockerfile
This commit is contained in:
parent
e172b1a820
commit
61180601c1
6
src/WebApi/Dockerfile
Normal file
6
src/WebApi/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM mcr.microsoft.com/dotnet/sdk:7.0
|
||||
WORKDIR /App
|
||||
COPY . ./
|
||||
RUN dotnet restore
|
||||
EXPOSE 5226
|
||||
CMD /usr/bin/dotnet run --project /App/WebApi.csproj
|
23
src/WebApi/docker-compose.yml
Normal file
23
src/WebApi/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
version: "3.4"
|
||||
services:
|
||||
y4f-webapi:
|
||||
build: .
|
||||
ports:
|
||||
- "5226:5226"
|
||||
labels:
|
||||
- traefik.docker.network=traefik
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.y4f.entrypoints=web-secure
|
||||
- traefik.http.routers.y4f.rule=Host(`api.y4f.hopeless-cloud.xyz`)
|
||||
- traefik.http.routers.y4f.tls=true
|
||||
- traefik.http.routers.y4f.tls.certResolver=default
|
||||
networks:
|
||||
- default
|
||||
- traefik
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
default:
|
||||
name: y4f-default
|
||||
external: true
|
||||
traefik:
|
||||
external: true
|
Loading…
x
Reference in New Issue
Block a user