42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
# 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.
|
|
# tags: object, storage, server, s3, api
|
|
|
|
services:
|
|
minio:
|
|
image: quay.io/minio/minio:latest
|
|
command: server /data --console-address ":9001"
|
|
environment:
|
|
- MINIO_SERVER_URL=$MINIO_SERVER_URL
|
|
- MINIO_BROWSER_REDIRECT_URL=$MINIO_BROWSER_REDIRECT_URL
|
|
- MINIO_ROOT_USER=$SERVICE_USER_MINIO
|
|
- MINIO_ROOT_PASSWORD=$SERVICE_PASSWORD_MINIO
|
|
volumes:
|
|
- minio-data:/data
|
|
|
|
# services:
|
|
# minio:
|
|
# image: minio/minio
|
|
# command: server /data --address ":9000" --console-address ":9001"
|
|
# networks:
|
|
# - coolify
|
|
# environment:
|
|
# - MINIO_SERVER_URL=http://minio.65.21.189.27.sslip.io
|
|
# - MINIO_BROWSER_REDIRECT_URL=http://console.65.21.189.27.sslip.io
|
|
# - MINIO_BROWSER=on
|
|
# - MINIO_ROOT_USER=asd
|
|
# - MINIO_ROOT_PASSWORD=asdasdasd
|
|
# labels:
|
|
# - "traefik.enable=true"
|
|
# - "traefik.http.routers.minio-console.rule=Host(`console.65.21.189.27.sslip.io`)"
|
|
# - "traefik.http.routers.minio-console.entrypoints=http"
|
|
# - "traefik.http.routers.minio-console.service=minio-console"
|
|
# - "traefik.http.services.minio-console.loadbalancer.server.port=9001"
|
|
# - "traefik.http.routers.minio.rule=Host(`minio.65.21.189.27.sslip.io`)"
|
|
# - "traefik.http.routers.minio.entrypoints=http"
|
|
# - "traefik.http.routers.minio.service=minio"
|
|
# - "traefik.http.services.minio.loadbalancer.server.port=9000"
|
|
# networks:
|
|
# coolify:
|
|
# external: true
|