You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
670 B

version: "3.7"
services:
app_proxy:
environment:
APP_HOST: minio_web_1
APP_PORT: 9011
PROXY_AUTH_ADD: "false"
web:
image: quay.io/minio/minio:RELEASE.2024-10-02T17-50-41Z@sha256:ea15e53e66f96f63e12f45509d2d2d8fad774808debb490f48508b3130bd22d3
restart: on-failure
user: "1000:1000"
stop_grace_period: 1m
ports:
# MinIO Api Server Port
- "9010:9000"
command: ["server", "/data"]
volumes:
- ${APP_DATA_DIR}/data/minio:/data
environment:
MINIO_ROOT_USER: "umbrel"
MINIO_ROOT_PASSWORD: "$APP_PASSWORD"
MINIO_CONSOLE_ADDRESS: ":9011"