diff --git a/Installation.md b/Installation.md index 260276b..e78aa0c 100644 --- a/Installation.md +++ b/Installation.md @@ -238,12 +238,15 @@ services: - ${VOL_PREFIX:-/srv/docker/clrghouz}/postgres:/var/lib/postgresql/data minio: - image: tobi312/minio + image: minio/minio command: ["server", "--console-address", ":9001", "/data"] deploy: resources: limits: memory: 256M + environment: + MINIO_ROOT_USER: ${MINIO_ROOT_USER:-minioadmin} + MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD:-minioadmin} healthcheck: test: [ "CMD", "curl", "--fail", "http://localhost:9000/minio/health/live" ] interval: 60s @@ -330,6 +333,10 @@ FIDO_DNS_NS=haproxy.example.com MAIL_FROM_ADDRESS="[YOUR EMAIL]" MAIL_FROM_NAME="[YOUR NAME]" +# Minio +MINIO_ROOT_USER=clrghouz +MINIO_ROOT_PASSWORD=[MINIO_PASSWORD] + # Other Items #MEMCACHED_START="FALSE" ```