From 4705a2b62f7484b615842586685f4f6a7ed2287e Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 27 Jan 2024 13:02:15 -0500 Subject: [PATCH] Fix arguments --- immich/immich-microservices-deployment.yaml | 8 +------- immich/immich-server-deployment.yaml | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/immich/immich-microservices-deployment.yaml b/immich/immich-microservices-deployment.yaml index 5680b7d..226c08e 100644 --- a/immich/immich-microservices-deployment.yaml +++ b/immich/immich-microservices-deployment.yaml @@ -16,13 +16,7 @@ spec: containers: - name: immich-microservices image: ghcr.io/immich-app/immich-server:release - command: ["/bin/bash", "-c"] - args: - - > - apt-get update && - apt-get install -y nfs-common && - start.sh microservices - # args: ["start.sh", "microservices"] + args: ["start.sh", "microservices"] env: - name: UPLOAD_LOCATION value: /usr/src/app/upload diff --git a/immich/immich-server-deployment.yaml b/immich/immich-server-deployment.yaml index e5ea7f8..d650deb 100644 --- a/immich/immich-server-deployment.yaml +++ b/immich/immich-server-deployment.yaml @@ -16,13 +16,7 @@ spec: containers: - name: immich-server image: ghcr.io/immich-app/immich-server:release - command: ["/bin/bash", "-c"] - args: - - > - apt-get update && - apt-get install -y nfs-common && - start.sh immich - # args: ["start.sh", "immich"] + args: ["start.sh", "immich"] env: - name: UPLOAD_LOCATION value: /usr/src/app/upload