update: modify MINIO_HOST to accept IP or domain and comment out port… (#5136)

* update: modify MINIO_HOST to accept IP or domain and comment out port exposure in docker configuration

* update: standardize MINIO_HOST format to accept IP or domain across multiple docker-compose files
This commit is contained in:
Theresa
2025-07-03 09:29:19 +08:00
committed by GitHub
parent 7add717876
commit 94b0188cfd
5 changed files with 11 additions and 11 deletions

View File

@@ -178,7 +178,7 @@ services:
environment:
- AUTH_TOKEN=xxxxxx # disable authentication token if you do not set this variable
# 改成 minio 公网地址
- MINIO_HOST=ip:9000
- MINIO_HOST=<ip or domain>
- MINIO_PORT=9000
- MINIO_USE_SSL=false
- MINIO_ACCESS_KEY=minioadmin
@@ -284,9 +284,9 @@ const list = [
environment:
MINIO_ACCESS_KEY: minioadmin
MINIO_SECRET_KEY: minioadmin
ports:
- '9001:9001'
- '9000:9000'
# ports:
# - '9001:9001'
# - '9000:9000'
networks:
- fastgpt
volumes: