diff --git a/immich/immich-server-deployment.yaml b/immich/immich-server-deployment.yaml index d04f777..a69bbca 100644 --- a/immich/immich-server-deployment.yaml +++ b/immich/immich-server-deployment.yaml @@ -17,6 +17,8 @@ spec: - name: immich-server image: ghcr.io/immich-app/immich-server:release args: ["start.sh", "immich"] + ports: + - containerPort: 3001 env: - name: UPLOAD_LOCATION value: /usr/src/app/upload diff --git a/immich/immich-server-service.yaml b/immich/immich-server-service.yaml index d1b700b..f1acc8a 100644 --- a/immich/immich-server-service.yaml +++ b/immich/immich-server-service.yaml @@ -6,7 +6,7 @@ metadata: spec: type: LoadBalancer ports: - - port: 3000 - targetPort: 2283 + - port: 80 + targetPort: 3001 selector: app: immich-server