Skip to content

Commit

Permalink
[#85] Fix: 배포서버 rabbitmq enable 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
tkguswls1106 committed May 23, 2024
1 parent 8161516 commit 72fafe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ebextensions/01-rabbitmq.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ commands:
03_connect_network_rabbitmq:
command: "docker network connect mynetwork rabbitmq || true"
04_enable_rabbitmq:
command: "docker exec rabbitmq bash -c 'rabbitmq-plugins enable rabbitmq_stomp && rabbitmq-plugins enable rabbitmq_management'"
command: "docker exec rabbitmq bash -c 'rabbitmq-plugins enable rabbitmq_stomp && rabbitmq-plugins enable rabbitmq_management' || true"
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
### ZIP file ###
- name: Generate deployment package
run: |
chmod +x .platform/hooks/**/*.sh
mkdir -p deploy
mkdir -p deploy/.platform/hooks/postdeploy
cp -r .ebextensions deploy/.ebextensions
Expand Down

0 comments on commit 72fafe4

Please sign in to comment.