Skip to content

Commit

Permalink
chore: attempt to fix rabbitmq in compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Mar 6, 2024
1 parent 1b3ccc8 commit 2e4029d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ services:
hub:
mq:
image: rabbitmq:3-management
hostname: mq
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 3s
Expand Down Expand Up @@ -113,7 +114,7 @@ services:
environment:
REDIS_CONNECTION_STRING: redis://redis
VAULT_CONNECTION_STRING: start123@http://vault:8090/v1/
RABBITMQ_CONNECTION_STRING: amqp://root:[email protected]
RABBITMQ_CONNECTION_STRING: ${MQ_CONNECTION_URL:-amqp://root:[email protected]}
PUBLIC_URL: ${CORE_PUBLIC_URL:-http://localhost:3001/}
AUTHUP_URL: http://authup:3000/
DB_TYPE: 'mysql'
Expand Down Expand Up @@ -158,7 +159,7 @@ services:
ports:
- '3003:3000'
environment:
RABBITMQ_CONNECTION_STRING: amqp://root:[email protected]
RABBITMQ_CONNECTION_STRING: ${MQ_CONNECTION_URL:-amqp://root:[email protected]}
VAULT_CONNECTION_STRING: start123@http://vault:8090/v1/
AUTHUP_URL: http://authup:3000/
CORE_URL: http://core:3000/
Expand Down

0 comments on commit 2e4029d

Please sign in to comment.