From 17039fc72fc7d8903e13ec37e887c8d70b173615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=BChnlein?= Date: Tue, 23 Jul 2024 08:52:59 +0200 Subject: [PATCH] chore: add restart: always to base services --- docker-compose.base.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.base.yaml b/docker-compose.base.yaml index 2fe7df1..17a9dfb 100644 --- a/docker-compose.base.yaml +++ b/docker-compose.base.yaml @@ -14,6 +14,7 @@ services: minio: image: minio/minio:${MINIO_VERSION} command: server --console-address ":9001" /data + restart: always ports: - "9000:9000" - "9001:9001" @@ -39,6 +40,7 @@ services: # TEMPORAL temporal: container_name: temporal + restart: always depends_on: - temporal-postgresql image: temporalio/auto-setup:${TEMPORAL_VERSION} @@ -48,6 +50,7 @@ services: - ./dynamicconfig:/etc/temporal/config/dynamicconfig temporal-ui: container_name: temporal-ui + restart: always depends_on: - temporal image: temporalio/ui:${TEMPORAL_UI_VERSION} @@ -55,6 +58,7 @@ services: - 8080:8080 temporal-admin-tools: container_name: temporal-admin-tools + restart: always depends_on: - temporal environment: