fix(piped/frontend): make nginx entrypoint actually do something (#35)

* 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

* bump patch version and add changelog
This commit is contained in:
JuniorJPDJ 2023-07-11 08:36:11 +02:00 committed by GitHub
parent 85a5cde0b3
commit fbc086f0c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ sources:
- https://github.com/TeamPiped/piped-proxy - https://github.com/TeamPiped/piped-proxy
keywords: keywords:
- streaming - streaming
version: 2.7.0 version: 2.7.1
appVersion: latest appVersion: latest
kubeVersion: ">=1.22.0-0" kubeVersion: ">=1.22.0-0"
maintainers: maintainers:
@ -26,5 +26,5 @@ dependencies:
condition: postgresql.enabled condition: postgresql.enabled
annotations: annotations:
artifacthub.io/changes: |- artifacthub.io/changes: |-
- kind: changed - kind: fixed
description: Upgraded `postgresql` chart dependency to version 12.6.0 description: Made frontend nginx entrypoint run docker-entrypoint.d scripts

View File

@ -46,7 +46,7 @@ frontend:
command: "/bin/ash" command: "/bin/ash"
args: args:
- -c - -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: # resources:
# requests: # requests: