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: 5 additions & 1 deletion dandi/tests/data/dandiarchive-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ services:
hard: 3000

minio:
image: minio/minio:latest
# MinIO deleted the `minio/minio` Docker Hub repository in September 2026.
# Quay still serves the archived community images, but they are frozen:
# `latest` there is RELEASE.2025-09-07T16-13-09Z and will never move again,
# so pin it explicitly rather than pretend it tracks anything.
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
# When run with a TTY, minio prints credentials on startup
tty: true
command: ["server", "/data"]
Expand Down
Loading