lasthourcloud/templates/compose/minio.yaml

16 lines
577 B
YAML
Raw Normal View History

2023-10-19 09:28:25 +00:00
# documentation: https://docs.min.io/docs/minio-docker-quickstart-guide.html
# slogan: MinIO is a high performance object storage server compatible with Amazon S3 APIs.
2023-10-24 10:33:49 +00:00
# tags: object, storage, server, s3, api
2023-10-19 09:28:25 +00:00
2023-10-04 13:43:29 +00:00
services:
minio:
2023-10-19 09:28:25 +00:00
image: quay.io/minio/minio:latest
2023-10-04 13:43:29 +00:00
command: server /data --console-address ":9001"
environment:
2023-11-11 20:32:41 +00:00
- MINIO_SERVER_URL=$MINIO_SERVER_URL
- MINIO_BROWSER_REDIRECT_URL=$MINIO_BROWSER_REDIRECT_URL
2023-11-10 21:04:04 +00:00
- MINIO_ROOT_USER=$SERVICE_USER_MINIO
- MINIO_ROOT_PASSWORD=$SERVICE_PASSWORD_MINIO
2023-10-04 13:43:29 +00:00
volumes:
- minio-data:/data