From 9eba147fef30de0e04e6d916f2f436b34c83db27 Mon Sep 17 00:00:00 2001 From: Max Buz <79866323+xopek-by@users.noreply.github.com> Date: Fri, 22 Sep 2023 15:19:24 +0200 Subject: [PATCH] Unless stopped for immich --- yamls/immich.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/yamls/immich.yaml b/yamls/immich.yaml index d967639..2f034eb 100644 --- a/yamls/immich.yaml +++ b/yamls/immich.yaml @@ -13,7 +13,7 @@ services: - redis - database - typesense - restart: always + restart: unless-stopped immich-microservices: container_name: immich_microservices @@ -30,7 +30,7 @@ services: - redis - database - typesense - restart: always + restart: unless-stopped immich-machine-learning: container_name: immich_machine_learning @@ -39,14 +39,14 @@ services: - model-cache:/cache env_file: - .env - restart: always + restart: unless-stopped immich-web: container_name: immich_web image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release} env_file: - .env - restart: always + restart: unless-stopped typesense: container_name: immich_typesense @@ -58,12 +58,12 @@ services: - GLOG_minloglevel=1 volumes: - tsdata:/data - restart: always + restart: unless-stopped redis: container_name: immich_redis image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3 - restart: always + restart: unless-stopped database: container_name: immich_postgres @@ -76,7 +76,7 @@ services: POSTGRES_DB: ${DB_DATABASE_NAME} volumes: - pgdata:/var/lib/postgresql/data - restart: always + restart: unless-stopped immich-proxy: container_name: immich_proxy @@ -90,7 +90,7 @@ services: depends_on: - immich-server - immich-web - restart: always + restart: unless-stopped volumes: pgdata: