From d982d81d5fa9b4752c33f0b4049507cfd409af7b Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Wed, 5 Jul 2023 15:19:42 +0200 Subject: [PATCH] fix: Set listening address to 0.0.0.0 --- charts/json-server/Chart.yaml | 4 ++-- init/entrypoint.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/json-server/Chart.yaml b/charts/json-server/Chart.yaml index 5a8d8b1..9fffb5a 100644 --- a/charts/json-server/Chart.yaml +++ b/charts/json-server/Chart.yaml @@ -6,10 +6,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: v0.5.0 +version: v0.5.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.5.0" +appVersion: "v0.5.1" diff --git a/init/entrypoint.sh b/init/entrypoint.sh index 6af0f54..da6a4c4 100644 --- a/init/entrypoint.sh +++ b/init/entrypoint.sh @@ -2,7 +2,7 @@ args="$@" -args="$@ -p 80" +args="$@ --host 0.0.0.0 --port 80" file=/data/db.json if [ -f $file ]; then