forked from LaconicNetwork/kompose
15 lines
341 B
YAML
15 lines
341 B
YAML
version: '3'
|
|
|
|
services:
|
|
minio:
|
|
image: quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
|
|
container_name: ragflow-minio
|
|
command: server --console-address ":9001" /data
|
|
ports:
|
|
- ${MINIO_PORT}:9000
|
|
- ${MINIO_CONSOLE_PORT}:9001
|
|
env_file: .env
|
|
environment:
|
|
- DOC_ENGINE=test-env
|
|
restart: on-failure
|