Skip to content

Commit

Permalink
feat: 서버에서 에러 발생시 컨테이너 재시작 하도록 변경 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
danivelop authored Feb 23, 2024
1 parent 78c517e commit 4bbb5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
sudo docker container rm -f $(sudo docker container ls -a --quiet)
sudo docker rmi $(sudo docker images -q) -f
sudo docker image pull 903755389667.dkr.ecr.ap-northeast-2.amazonaws.com/linker:$IMAGE_TAG &&
sudo docker container run --name linker -d -p 3000:3000 903755389667.dkr.ecr.ap-northeast-2.amazonaws.com/linker:$IMAGE_TAG"
sudo docker container run --name linker --restart=always -d -p 3000:3000 903755389667.dkr.ecr.ap-northeast-2.amazonaws.com/linker:$IMAGE_TAG"

0 comments on commit 4bbb5d5

Please sign in to comment.