From 54eccbe32bdb17f7a1f8bd63c99be9249f924e99 Mon Sep 17 00:00:00 2001 From: Jemg Date: Mon, 15 Dec 2025 00:30:03 -0500 Subject: [PATCH] add: restart policy to MinIO service (#576) restart: unless-stopped is a Docker restart policy that automatically restarts a container if it stops due to an error or Docker daemon restart --- blueprints/minio/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/minio/docker-compose.yml b/blueprints/minio/docker-compose.yml index 0e14a430..a25e3aee 100644 --- a/blueprints/minio/docker-compose.yml +++ b/blueprints/minio/docker-compose.yml @@ -1,10 +1,10 @@ -version: "3.8" services: minio: # after RELEASE.2025-04-22T22-12-26Z, minio removed most of the admin UI, if you want to use the admin UI, uncomment the line below # image: minio/minio:RELEASE.2025-04-22T22-12-26Z # if you uncommented the line above, comment the line below image: minio/minio + restart: unless-stopped volumes: # by default, the MinIO container will use a volume named minio-data # to store its data. This volume is created automatically by Docker.