Skip to content

Commit

Permalink
[KAN-32] CI/CD ContainerConfig Error 버그 픽스 (docker-compose version up)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkyoungdeok committed May 5, 2024
1 parent 2add664 commit 96bd46f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-api-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
echo "> 배포"
if [ "$IDLE_PROFILE" == "prod1" ]
then
docker-compose build skku-api-1
docker-compose up -d skku-api-1
docker compose build skku-api-1
docker compose up -d skku-api-1
else
docker-compose build skku-api-2
docker-compose up -d skku-api-2
docker compose build skku-api-2
docker compose up -d skku-api-2
fi
sleep 60
Expand Down

0 comments on commit 96bd46f

Please sign in to comment.