docker-compose-minio-tcp.yaml 451 B

123456789101112131415161718192021
  1. version: '3.7'
  2. services:
  3. minio:
  4. hostname: minio
  5. image: quay.io/minio/minio:${MINIO_TAG}
  6. command: server --address ":9000" --console-address ":9001" /minio-data
  7. expose:
  8. - "9000"
  9. - "9001"
  10. ports:
  11. - "9000:9000"
  12. - "9001:9001"
  13. healthcheck:
  14. test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
  15. interval: 30s
  16. timeout: 5s
  17. retries: 3
  18. networks:
  19. emqx_bridge: