From 7c6fbc3287c4cae5e1b89ff370d140e82adece29 Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Sat, 27 Apr 2024 21:50:47 +0800 Subject: [PATCH] Update MINIO_OPTS in production.yml to use port 9001 for minio_server --- production.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/production.yml b/production.yml index f81d778..527f152 100644 --- a/production.yml +++ b/production.yml @@ -144,18 +144,19 @@ services: - default minio-common: - image: minio/minio:latest + image: quay.io/minio/minio:RELEASE.2024-04-18T19-09-19Z container_name: minio_server environment: MINIO_ROOT_USER: "${MINIO_ROOT_USER:-minioadmin}" MINIO_ROOT_PASSWORD: "${MINIO_ROOT_PASSWORD:-minioadmin}" - MINIO_OPTS: "--console-address :9001" + # MINIO_OPTS: "--console-address :9001" # MINIO_SERVER_URL: https://drive.furyhawk.lol user: "1000:1000" restart: unless-stopped ports: - 8760:9000 - 8761:9001 + command: server --console-address ":9001" healthcheck: test: ["CMD", "mc", "ready", "local"] interval: 5s