coolify/templates/compose/minio.yaml

22 lines
737 B
YAML
Raw Normal View History

2024-02-20 15:42:30 +01:00
# documentation: https://min.io/docs/minio/container/index.html
2023-10-19 11:28:25 +02:00
# slogan: MinIO is a high performance object storage server compatible with Amazon S3 APIs.
2023-10-24 12:33:49 +02:00
# tags: object, storage, server, s3, api
2024-02-20 15:42:30 +01:00
# logo: svgs/minio.svg
2023-10-19 11:28:25 +02:00
2023-10-04 15:43:29 +02:00
services:
minio:
2023-10-19 11:28:25 +02:00
image: quay.io/minio/minio:latest
2023-10-04 15:43:29 +02:00
command: server /data --console-address ":9001"
environment:
2023-11-11 21:32:41 +01:00
- MINIO_SERVER_URL=$MINIO_SERVER_URL
- MINIO_BROWSER_REDIRECT_URL=$MINIO_BROWSER_REDIRECT_URL
2023-11-10 22:04:04 +01:00
- MINIO_ROOT_USER=$SERVICE_USER_MINIO
- MINIO_ROOT_PASSWORD=$SERVICE_PASSWORD_MINIO
2023-10-04 15:43:29 +02:00
volumes:
- minio-data:/data
healthcheck:
2024-05-17 10:11:55 +02:00
test: ["CMD", "curl", "-f", "http://127.0.0.1:9000/minio/health/live"]
interval: 5s
timeout: 20s
retries: 10