diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c4b35ee --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3' + +services: + minio: + image: minio/minio + ports: + - "9000:9000" + - "9001:9001" + volumes: + - ./data:/data + environment: + MINIO_ROOT_USER: franv + MINIO_ROOT_PASSWORD: fraal111 + command: server --console-address ":9001" /data