diff --git a/compose/.DS_Store b/compose/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/compose/.DS_Store differ diff --git a/compose/s3.yml b/compose/s3.yml new file mode 100644 index 0000000..97ca313 --- /dev/null +++ b/compose/s3.yml @@ -0,0 +1,12 @@ +services: + minio: + image: quay.io/minio/minio + command: server /data --console-address ":9001" + environment: + - MINIO_ROOT_USER=${ROOT_USER} + - MINIO_ROOT_PASSWORD=${ROOT_PASSWORD} + volumes: + - ${ROOT_DIR}:/data + ports: + - 9000:9000 + - 9001:9001 \ No newline at end of file