infra/compose/minio.yml

13 lines
300 B
YAML
Raw Permalink Normal View History

2024-11-28 00:52:42 -06:00
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:
2024-12-17 23:26:14 -06:00
- ${S3_PORT}:9000
2025-01-11 19:03:12 -06:00
- ${APP_PORT}:9001