Skip to content

Commit 10a13d9

Browse files
authored
chore: main.yml 접속 포트 3000으로 변경
1 parent aa80907 commit 10a13d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
registry: ghcr.io
7474
username: ${{ github.actor }}
7575
password: ${{ secrets.GHCR_TOKEN }}
76-
# 3000 -> 80 포트로 수행하도록 지정
76+
# 3000 -> 3000 포트로 수행하도록 지정
7777
- name: Docker run
7878
run: |
7979
docker stop ${{ env.NAME }} && docker rm ${{ env.NAME }} && docker rmi ${{ env.DOCKER_IMAGE }}:latest
80-
docker run -d -p 80:3000 --name go_cicd --restart always ${{ env.DOCKER_IMAGE }}:latest
80+
docker run -d -p 3000:3000 --name go_cicd --restart always ${{ env.DOCKER_IMAGE }}:latest

0 commit comments

Comments
 (0)