Update Installation

deon 2024-10-23 05:29:45 +00:00
parent 3866282889
commit a9a7eef102

@ -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"
```