mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-27 20:15:01 +02:00
The quay.io/minio/minio and quay.io/minio/mc images now answer 401, and the minio images are gone from Docker Hub as well: the dev stack, the backend CI job and the helm dev-backend could not pull them anymore. [pgsty/silo](https://hub.docker.com/r/pgsty/silo) and [pgsty/mc](https://hub.docker.com/r/pgsty/mc) are community builds and drop in replacement of minio. Only the executable name is changing from minio to silo.
28 lines
826 B
YAML
28 lines
826 B
YAML
services:
|
|
minio:
|
|
image: pgsty/silo
|
|
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
|