From 2e8f554c981fb42be2b803daf60f18701c50cff4 Mon Sep 17 00:00:00 2001 From: junseublim Date: Mon, 24 Jun 2024 03:10:13 +0900 Subject: [PATCH] feat: Map port 80 on the host to 3000 on the container --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 88add90..3d473f1 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -29,4 +29,4 @@ jobs: - name: Delete existing container run: docker rm -f polabo-fe || true - name: Run container - run: docker run -d -p 3000:3000 --name polabo-fe sonny2024/polabo-fe:latest + run: docker run -d -p 80:3000 --name polabo-fe sonny2024/polabo-fe:latest