Skip to content

Commit

Permalink
Merge pull request #102 from Project-OMOTES/98-also-make-rabbitmq-def…
Browse files Browse the repository at this point in the history
…ault-port-15672-configurable

98: Make RabbitMQ management port configurable through env var.
  • Loading branch information
lfse-slafleur committed Sep 13, 2024
2 parents e928099 + a6b56bc commit 3f0de39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ POSTGRES_ORCHESTRATOR_USER_NAME=omotes_orchestrator
POSTGRES_ORCHESTRATOR_USER_PASSWORD=somepass3

RABBITMQ_PORT=5672
RABBITMQ_MANAGEMENT_PORT=15672
RABBITMQ_ROOT_USER=root
RABBITMQ_ROOT_PASSWORD=5678
RABBITMQ_OMOTES_USER_NAME=omotes
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
hostname: rabbitmq-nwn
ports:
- '${RABBITMQ_PORT}:5672'
- '15672:15672'
- '${RABBITMQ_MANAGEMENT_PORT}:15672'
networks:
- omotes
# - mapeditor-net
Expand Down

0 comments on commit 3f0de39

Please sign in to comment.