commit 780ccfbf1e2b8c1bd4817c00b1037e35752ea05b Author: Mathias Beaulieu-Duncan Date: Thu Nov 7 10:53:05 2024 -0500 initial commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..260b931 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +ROOT_USER= +ROOT_PASS= diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..c124733 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,12 @@ +version: "3.4" +services: + minio: + image: quay.io/minio/minio + restart: always + ports: + - "9000:9000" + - "9001:9001" + environment: + MINIO_ROOT_USER: ${ROOT_USER} + MINIO_ROOT_PASSWORD: ${ROOT_PASS} + command: ["server", "--console-address", ":9001", "/data"]