Skip to content

Commit

Permalink
feat/#28/컨테이너 포트 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
gwgw123 committed Nov 30, 2024
1 parent e959170 commit 69cae7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
docker stop ${{ env.NAME }} || true
docker rm ${{ env.NAME }} || true
docker rmi ${{ env.DOCKER_IMAGE }}:latest || true
docker run --env-file /home/ubuntu/.env -d -p 80:3000 --name go_cicd --restart always ${{ env.DOCKER_IMAGE }}:latest
docker run --env-file /home/ubuntu/.env -d -p 3000:3000 --name go_cicd --restart always ${{ env.DOCKER_IMAGE }}:latest
2 changes: 1 addition & 1 deletion src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export class AuthController {
maxAge: 3600000,
});

res.redirect('http://localhost:3000');
res.redirect('http://localhost:3000/learn');
}
}

0 comments on commit 69cae7e

Please sign in to comment.