Skip to content

Commit

Permalink
Fix: Docker 실행 구문 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
mjttong committed Aug 27, 2024
1 parent 84b2155 commit c8cd747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
echo "docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> scripts/deploy.sh
echo "docker stop csbroker-api || true" >> scripts/deploy.sh
echo "docker rm csbroker-api || true" >> scripts/deploy.sh
echo "docker run -p 8080:8080 -e PROFILE=dev -d --restart always --name csbroker-api $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> scripts/deploy.sh
echo "docker run -p 8080:8080 -e SPRING_PROFILES_ACTIVE=dev -d --restart always --name csbroker-api $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> scripts/deploy.sh
- name: Upload to S3
env:
Expand Down

0 comments on commit c8cd747

Please sign in to comment.