diff --git a/.github/workflows/deploy.test-env.yml b/.github/workflows/deploy.test-env.yml index 43169fa..43bc4b1 100644 --- a/.github/workflows/deploy.test-env.yml +++ b/.github/workflows/deploy.test-env.yml @@ -40,5 +40,5 @@ jobs: docker pull git.wohlleben.dev/itob/${DOCKER_CONTAINER_NAME}:latest docker stop ${DOCKER_CONTAINER_NAME} docker rm ${DOCKER_CONTAINER_NAME} - docker run --init -d --name ${DOCKER_CONTAINER_NAME} -p 8081:81 --build-arg docker_external_http_port=81 --restart=always git.wohlleben.dev/itob/${DOCKER_CONTAINER_NAME}:latest + docker run --init -d --name ${DOCKER_CONTAINER_NAME} -p 8000:80 --restart=always git.wohlleben.dev/itob/${DOCKER_CONTAINER_NAME}:latest docker system prune -af \ No newline at end of file diff --git a/IaC/RBLNews.Web/Dockerfile b/IaC/RBLNews.Web/Dockerfile index 1c8139c..6a309ec 100644 --- a/IaC/RBLNews.Web/Dockerfile +++ b/IaC/RBLNews.Web/Dockerfile @@ -3,8 +3,8 @@ WORKDIR /app EXPOSE 80 EXPOSE 8080 EXPOSE 443 -ARG docker_external_http_port -ENV ASPNETCORE_URLS=http://+:docker_external_http_port +#ARG docker_external_http_port +#ENV ASPNETCORE_URLS=http://+:docker_external_http_port FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release