From d89353248e88f97f3561309f31f1c6071ce2bc0c Mon Sep 17 00:00:00 2001 From: Kun Date: Sun, 26 Jul 2026 00:25:48 +0800 Subject: [PATCH] update 26.7.25 --- 480T/minio/.env | 2 ++ 480T/minio/docker-compose.yaml | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 480T/minio/.env create mode 100644 480T/minio/docker-compose.yaml diff --git a/480T/minio/.env b/480T/minio/.env new file mode 100644 index 0000000..21213ff --- /dev/null +++ b/480T/minio/.env @@ -0,0 +1,2 @@ +MINIO_ROOT_USER=kun +MINIO_ROOT_PASSWORD=nxY7HUoJYjUgn \ No newline at end of file diff --git a/480T/minio/docker-compose.yaml b/480T/minio/docker-compose.yaml new file mode 100644 index 0000000..7f03deb --- /dev/null +++ b/480T/minio/docker-compose.yaml @@ -0,0 +1,22 @@ +services: + minio: + image: pgsty/minio:latest + container_name: minio + restart: unless-stopped + command: > + server /data + --console-address ":9001" + environment: + TZ: Asia/Shanghai + MINIO_ROOT_USER: ${MINIO_ROOT_USER} + MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD} + volumes: + - /volume1/docker/docker_projects/minio:/data + ports: + - "3401:9000" # S3 API + - "3400:9001" # Web Console + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] + interval: 30s + timeout: 5s + retries: 3 \ No newline at end of file