From f4d83a9b9d38e9b1143f56aff1dffdc0df29460e Mon Sep 17 00:00:00 2001 From: JuniorJPDJ Date: Mon, 10 Jul 2023 01:04:46 +0200 Subject: [PATCH] fix(charts/piped): make entrypoint actually do something It does nothing if 1st argument is not nginx and just execs the arguments: https://github.com/nginxinc/docker-nginx/blob/master/entrypoint/docker-entrypoint.sh#L12 --- charts/apps/piped/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/apps/piped/values.yaml b/charts/apps/piped/values.yaml index e31fdb2..18c4ab8 100644 --- a/charts/apps/piped/values.yaml +++ b/charts/apps/piped/values.yaml @@ -46,7 +46,7 @@ frontend: command: "/bin/ash" args: - -c - - "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g 'daemon off;'" + - "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh nginx -g 'daemon off;'" # resources: # requests: