Skip to content

Commit

Permalink
chore: 배포스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zeze1004 authored Mar 29, 2024
1 parent 0c10f68 commit a455bb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
sudo docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
sudo docker stop $(sudo docker ps -a -q)
sudo docker rm -f $(sudo docker ps -a -q)
sudo docker pull ${{ secrets.DOCKER_REPOSITORY }}:${{ steps.extract_tag.outputs.tag }}
sudo docker run -d -p 8080:8080 ${{ secrets.DOCKER_REPOSITORY }}:${{ steps.extract_tag.outputs.tag }}
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }}:${{ steps.extract_tag.outputs.tag }}
sudo docker run -d -p 8080:8080 ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }}:${{ steps.extract_tag.outputs.tag }}
sudo docker image prune -f
ps -ef | grep
docker-compose -f docker-compose-dev.yml down
Expand Down

0 comments on commit a455bb5

Please sign in to comment.