From b2799b25111ece79bcc0b0795ae7a979df010c83 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Fri, 26 May 2023 21:44:38 +0200 Subject: [PATCH] Change container port --- .gitea/workflows/deploy.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 8459865..fbdaa39 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -27,4 +27,4 @@ jobs: - name: Run Docker container run: | - docker run -d -p 8086:80 --name dev thethomaas/11ty-workflow-example:latest \ No newline at end of file + docker run -d -p 8086:3000 --name dev thethomaas/11ty-workflow-example:latest \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 00927a9..f067d48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ FROM lipanski/docker-static-website:latest ARG SITE_DIRECTORY=dist COPY $SITE_DIRECTORY . -EXPOSE 80 \ No newline at end of file +EXPOSE 3000 \ No newline at end of file