diff --git a/docker-compose.yml b/docker-compose.yml index 20b53c4..6e0287d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,6 +11,8 @@ services: - AgileConfig__Name=KonSoft.InternalGateway - AgileConfig__Nodes=https://config.konsoft.top/ - AgileConfig__Secret=DBE31703-14F9-4B01-893D-900B8380CE04 + ports: + - 8080:8080 authserver: container_name: clean-authserver @@ -24,6 +26,8 @@ services: - AgileConfig__Name=KonSoft.AuthServer - AgileConfig__Nodes=https://config.konsoft.top/ - AgileConfig__Secret=DBE31703-14F9-4B01-893D-900B8380CE04 + ports: + - 8081:8081 adminservice: container_name: clean-adminservice diff --git a/gateways/KonSoft.InternalGateway/Dockerfile b/gateways/KonSoft.InternalGateway/Dockerfile index 19e12f9..4109b38 100644 --- a/gateways/KonSoft.InternalGateway/Dockerfile +++ b/gateways/KonSoft.InternalGateway/Dockerfile @@ -2,7 +2,6 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base USER $APP_UID WORKDIR /app EXPOSE 8080 -EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build