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.

12 lines
227 B

  1. FROM minio/minio:latest
  2. RUN chmod 1777 /usr/bin
  3. COPY ./minio /usr/bin/minio
  4. COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
  5. ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
  6. VOLUME ["/data"]
  7. CMD ["minio"]