From b426637b46aec4335b78bc63998539508aaebfa6 Mon Sep 17 00:00:00 2001 From: Diogo Recharte Date: Tue, 19 Sep 2023 20:28:22 +0100 Subject: [PATCH 1/2] EVEREST-444 Expose everest to outside localhost In c591381 we removed the ability for users to access everest from outside of localhost. Until we implement a configurable way for users to control the exposure of the everest container we must revert those changes and re-introduce the ability to run everest with its port exposed. --- deploy/quickstart-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/quickstart-compose.yml b/deploy/quickstart-compose.yml index e5a4a189..6247cbde 100644 --- a/deploy/quickstart-compose.yml +++ b/deploy/quickstart-compose.yml @@ -18,4 +18,4 @@ services: environment: - DSN=postgres://admin:pwd@pg:5432/postgres?sslmode=disable ports: - - 127.0.0.1:8080:8080 + - 8080:8080 From 9b4dac4506bb3ef6f51847a944a4faee15976b04 Mon Sep 17 00:00:00 2001 From: Andrew Minkin Date: Wed, 20 Sep 2023 02:12:08 +0600 Subject: [PATCH 2/2] Update quickstart-compose.yml --- deploy/quickstart-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/quickstart-compose.yml b/deploy/quickstart-compose.yml index 6247cbde..1a4d5a9b 100644 --- a/deploy/quickstart-compose.yml +++ b/deploy/quickstart-compose.yml @@ -18,4 +18,4 @@ services: environment: - DSN=postgres://admin:pwd@pg:5432/postgres?sslmode=disable ports: - - 8080:8080 + - ${EVEREST_BIND_ADDR:-127.0.0.1}:8080:8080