mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-22 17:45:12 +02:00
MinIO stopped publishing images on Docker Hub in October 2025 and archived its GitHub repository in February 2026. `minio/mc` and `minio/minio` can no longer be pulled, so the `createbuckets` service fails with `pull access denied for minio/mc`. The same images are still served from quay.io. Signed-off-by: Nicolas Clerc <kernicpanel@nclerc.fr>
28 lines
835 B
YAML
28 lines
835 B
YAML
services:
|
|
minio:
|
|
image: quay.io/minio/minio
|
|
environment:
|
|
- MINIO_ROOT_USER=<set minio root username>
|
|
- MINIO_ROOT_PASSWORD=<set minio root password>
|
|
# Uncomment and set your values if using our nginx proxy example
|
|
# - VIRTUAL_HOST=storage.yourdomain.tld # used by nginx proxy
|
|
# - VIRTUAL_PORT=9000 # used by nginx proxy
|
|
# - LETSENCRYPT_HOST=storage.yourdomain.tld # used by lets encrypt to generate TLS certificate
|
|
healthcheck:
|
|
test: ["CMD", "mc", "ready", "local"]
|
|
interval: 1s
|
|
timeout: 20s
|
|
retries: 300
|
|
entrypoint: ""
|
|
command: minio server /data
|
|
volumes:
|
|
- ./data/minio:/data
|
|
# Uncomment if using our nginx proxy example
|
|
# networks:
|
|
# - proxy-tier
|
|
|
|
# Uncomment if using our nginx proxy example
|
|
#networks:
|
|
# proxy-tier:
|
|
# external: true
|