Skip to content

Commit

Permalink
chore: add restart: always to base services
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Kühnlein committed Jul 23, 2024
1 parent bb0e054 commit 17039fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker-compose.base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
minio:
image: minio/minio:${MINIO_VERSION}
command: server --console-address ":9001" /data
restart: always
ports:
- "9000:9000"
- "9001:9001"
Expand All @@ -39,6 +40,7 @@ services:
# TEMPORAL
temporal:
container_name: temporal
restart: always
depends_on:
- temporal-postgresql
image: temporalio/auto-setup:${TEMPORAL_VERSION}
Expand All @@ -48,13 +50,15 @@ services:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
temporal-ui:
container_name: temporal-ui
restart: always
depends_on:
- temporal
image: temporalio/ui:${TEMPORAL_UI_VERSION}
ports:
- 8080:8080
temporal-admin-tools:
container_name: temporal-admin-tools
restart: always
depends_on:
- temporal
environment:
Expand Down

0 comments on commit 17039fc

Please sign in to comment.