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.

16 lines
349 B

  1. version: '3.6'
  2. services:
  3. minio:
  4. image: minio/minio:RELEASE.2020-06-12T00-06-19Z
  5. restart: always
  6. volumes:
  7. - minio:/minio
  8. environment:
  9. MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY}
  10. MINIO_SECRET_KEY: ${MINIO_SECRET_KEY}
  11. command: server /minio
  12. # Must be copied into main minio docker-compose yml-file
  13. volumes:
  14. minio: