Ai
5 Star 26 Fork 21

Gitee 极速下载/label-studio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/heartexlabs/label-studio
克隆/下载
docker-compose.minio.yml 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
# rotating logs so they do not overflow
x-logging:
logging: &default-logging
driver: "local"
options:
max-size: "10m"
max-file: "3"
services:
# not replicated setup for test setup, use a proper aws S3 compatible cluster in production
minio:
image: "minio/minio:${MINIO_VERSION:-RELEASE.2025-04-22T22-12-26Z}"
command: server /data --console-address ":9009"
restart: unless-stopped
logging: *default-logging
ports:
- "9000:9000"
- "9009:9009"
volumes:
- minio-data:/data
# configure env vars in .env file or your systems environment
environment:
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-minio_admin_do_not_use_in_production}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-minio_admin_do_not_use_in_production}
- MINIO_PROMETHEUS_URL=${MINIO_PROMETHEUS_URL:-http://prometheus:9090}
- MINIO_PROMETHEUS_AUTH_TYPE=${MINIO_PROMETHEUS_AUTH_TYPE:-public}
prometheus:
image: quay.io/prometheus/prometheus:v2.37.1
restart: unless-stopped
logging: *default-logging
# ports:
# - "9090:9090"
volumes:
- "./prometheus/minio/prometheus.yml:/etc/prometheus/prometheus.yml"
- "prometheus-data:/prometheus"
command:
- "--config.file=/etc/prometheus/prometheus.yml"
volumes:
minio-data:
prometheus-data:
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/label-studio.git
git@gitee.com:mirrors/label-studio.git
mirrors
label-studio
label-studio
develop

搜索帮助