update 26.7.25

This commit is contained in:
kun
2026-07-26 00:25:48 +08:00
parent 9e52444dc6
commit d89353248e
2 changed files with 24 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
MINIO_ROOT_USER=kun
MINIO_ROOT_PASSWORD=nxY7HUoJYjUgn
+22
View File
@@ -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