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
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-08-29T01-40-52Z@sha256:0bd79595dbcf155782860716abf4cf79d5ee32a9508b60fa1a88793bbe55b245
|
|
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"
|