You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
574 B

3 years ago
  1. minio:
  2. image: 'minio/minio:latest'
  3. ports:
  4. - '${FORWARD_MINIO_PORT:-9000}:9000'
  5. - '${FORWARD_MINIO_CONSOLE_PORT:-8900}:8900'
  6. environment:
  7. MINIO_ROOT_USER: 'sail'
  8. MINIO_ROOT_PASSWORD: 'password'
  9. volumes:
  10. - 'sailminio:/data/minio'
  11. networks:
  12. - sail
  13. command: minio server /data/minio --console-address ":8900"
  14. healthcheck:
  15. test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
  16. retries: 3
  17. timeout: 5s