This commit is contained in:
Atridad Lahiji 2024-11-28 00:52:42 -06:00
parent d4f2cca720
commit e2a0edc933
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
2 changed files with 12 additions and 0 deletions

BIN
compose/.DS_Store vendored Normal file

Binary file not shown.

12
compose/s3.yml Normal file
View file

@ -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