mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-11 16:09:18 +00:00
24 lines
670 B
YAML
24 lines
670 B
YAML
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-09-13T20-26-02Z@sha256:cd04ea408e185cb50076ea1c3988d444119b19aaae15aab45387ccf14b2a2f86
|
|
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" |