mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 10:00:07 +00:00
13 lines
331 B
YAML
13 lines
331 B
YAML
version: "3"
|
|
services:
|
|
minio:
|
|
image: minio/minio:RELEASE.2023-07-07T07-13-57Z
|
|
container_name: "minio_test"
|
|
environment:
|
|
MINIO_ROOT_USER: "miniouser"
|
|
MINIO_ROOT_PASSWORD: "miniopassword"
|
|
ports:
|
|
- 9000:9000 # S3 API
|
|
- 9001:9001 # Web UI
|
|
command: server /data --console-address ":9001"
|