From 136ad489b492273b27aee44711f4a77db897ae6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=85=86=E9=91=AB?= Date: Mon, 20 Oct 2025 16:17:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=20authserver=20?= =?UTF-8?q?=E5=92=8C=20internalgateway=20=E7=9A=84=E7=AB=AF=E5=8F=A3?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=EF=BC=8C=E7=A7=BB=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E7=AB=AF=E5=8F=A3=E6=9A=B4=E9=9C=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 4 ++++ gateways/KonSoft.InternalGateway/Dockerfile | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) 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