fix(immich): actually spin up microservices contaienr (#3998)

* fix(immich): actually spin up microservices contaienr

* cmon chmod your executables
This commit is contained in:
Stavros Kois 2022-10-03 22:51:27 +03:00 committed by GitHub
parent a8e02abc01
commit 116b32ebdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ name: immich
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/immich
- https://github.com/immich-app/immich
version: 0.0.2
version: 0.0.3
annotations:
truecharts.org/catagories: |
- media

View File

@ -10,7 +10,7 @@ securityContext:
command:
- /bin/sh
- -c
- ./start-microservices.sh
- chmod +x ./start-microservices.sh && ./start-microservices.sh
volumeMounts:
- name: uploads
mountPath: {{ .Values.persistence.uploads.mountPath }}

View File

@ -10,6 +10,7 @@
{{- $_ := set .Values.additionalContainers "proxy" (include "immich.proxy" . | fromYaml) -}}
{{- $_ := set .Values.additionalContainers "web" (include "immich.web" . | fromYaml) -}}
{{- $_ := set .Values.additionalContainers "ml" (include "immich.ml" . | fromYaml) -}}
{{- $_ := set .Values.additionalContainers "microservices" (include "immich.microservices" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}