-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix RabbitMQ connection issues on Windows #426
- Loading branch information
Showing
4 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
ES_HOST=elasticsearch | ||
ES_PORT=9200 | ||
|
||
discovery.type=single-node | ||
|
||
# Set custom heap size to avoid memory errors | ||
ES_JAVA_OPTS=-Xms1g -Xmx1g | ||
|
||
# Avoid test failures due to small disks | ||
# More info at https://github.com/markshust/docker-magento/issues/488 | ||
cluster.routing.allocation.disk.threshold_enabled=false | ||
index.blocks.read_only_allow_delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
RABBITMQ_HOST=rabbitmq | ||
RABBITMQ_PORT=5672 | ||
RABBITMQ_DEFAULT_USER=magento | ||
RABBITMQ_DEFAULT_PASS=magento | ||
RABBITMQ_DEFAULT_VHOST=/ | ||
RABBITMQ_VM_MEMORY_HIGH_WATERMARK=1GB |