mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
41d4d650e4
also add additional packages such as 'iproute', 'iputils' for `ping` and `ip addr` commands.
18 lines
306 B
Docker
18 lines
306 B
Docker
FROM minio/minio:edge
|
|
|
|
LABEL maintainer="MinIO Inc <dev@min.io>"
|
|
|
|
COPY minio /usr/bin/
|
|
COPY dockerscripts/docker-entrypoint.sh /usr/bin/
|
|
|
|
RUN chmod +x /usr/bin/minio && \
|
|
chmod +x /usr/bin/docker-entrypoint.sh
|
|
|
|
EXPOSE 9000
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["minio"]
|