Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ ADD mc /bin/mc
ADD ./integration.sh /bin/integration.sh
RUN chmod +x /bin/integration.sh

# this is so the minio client (https://github.com/minio/mc) works properly
ENV DOCKERIMAGE=1

CMD mc
2 changes: 2 additions & 0 deletions rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ FROM ubuntu-debootstrap:14.04
ENV MINIOHOME /home/minio
ENV MINIOUSER minio
RUN useradd -m -d $MINIOHOME $MINIOUSER
# this is so the minio client (https://github.com/minio/mc) works properly
ENV DOCKERIMAGE=1

RUN apt-get update -y && apt-get install -y -q \
ca-certificates \
Expand Down