Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
# Minio local storage helper
#-----------------------------------------------
minio:
image: minio/minio:RELEASE.2020-10-03T02-19-42Z
image: minio/minio:RELEASE.2025-04-22T22-12-26Z
command: server /export
volumes:
- ./var/minio:/export
Expand All @@ -62,11 +62,11 @@ services:
- $MINIO_PORT:9000
env_file: .env
healthcheck:
test: ["CMD", "nc", "-z", "minio", "9000"]
test: ["CMD", "curl", "-I", "http://minio:9000/minio/health/live"]
interval: 5s
retries: 5
createbuckets:
image: minio/mc
image: minio/mc:RELEASE.2025-07-21T05-28-08Z
depends_on:
minio:
condition: service_healthy
Expand Down