From 0344514fc116b14e71825569f5880a34def32f2e Mon Sep 17 00:00:00 2001 From: Dominik Schubert Date: Thu, 9 Nov 2023 00:11:30 +0100 Subject: [PATCH] fix missing GATEWAY_LISTEN --- content/en/references/external-ports.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/en/references/external-ports.md b/content/en/references/external-ports.md index 59a4c80036..472c05ef78 100644 --- a/content/en/references/external-ports.md +++ b/content/en/references/external-ports.md @@ -57,6 +57,7 @@ services: - "4566:4566" # LocalStack Gateway - "4510-4559:4510-4559" # external services port range environment: + - GATEWAY_LISTEN=0.0.0.0:4566 - EXTERNAL_SERVICE_PORTS_START=4510 - EXTERNAL_SERVICE_PORTS_END=4559 - MAIN_CONTAINER_NAME=localstack-main-1 @@ -72,6 +73,7 @@ services: - "4666:4666" # LocalStack Gateway - "4610-4659:4610-4659" # external services port range environment: + - GATEWAY_LISTEN=0.0.0.0:4666 - EXTERNAL_SERVICE_PORTS_START=4610 - EXTERNAL_SERVICE_PORTS_END=4659 - MAIN_CONTAINER_NAME=localstack-main-2 @@ -87,6 +89,7 @@ services: - "4766:4766" # LocalStack Gateway - "4710-4759:4710-4759" # external services port range environment: + - GATEWAY_LISTEN=0.0.0.0:4766 - EXTERNAL_SERVICE_PORTS_START=4710 - EXTERNAL_SERVICE_PORTS_END=4759 - MAIN_CONTAINER_NAME=localstack-main-3