Skip to content

Commit

Permalink
docker run 시 환경변수 사용으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
semnisem committed Jul 17, 2024
1 parent 8abf6ae commit 2618876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev-cv-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ jobs:
sudo docker stop ${{ env.NAME }} || true
sudo docker rm ${{ env.NAME }} || true
sudo docker rmi ${{ env.DOCKER_IMAGE }}:${{ env.TAG }} || true
sudo docker run -d -p 8000:8000 --name dev-cv-container --restart always ${{ env.DOCKER_IMAGE }}:${{ env.TAG }}
sudo docker run -d -p 8000:8000 --name ${{ env.NAME }} --restart always ${{ env.DOCKER_IMAGE }}:${{ env.TAG }}

0 comments on commit 2618876

Please sign in to comment.