docker-dind

gitHub

https://github.com/jpetazzo/dind/blob/master/Dockerfile

FROM ubuntu:14.04
MAINTAINER [email protected]

# Let's start with some basic stuff.
RUN apt-get update -qq && apt-get install -qqy \
    apt-transport-https \
    ca-certificates \
    curl \
    lxc \
    iptables
    
# Install Docker from Docker Inc. repositories.
RUN curl -sSL https://get.docker.com/ | sh

# Install the magic wrapper.
ADD ./wrapdocker /usr/local/bin/wrapdocker
RUN chmod +x /usr/local/bin/wrapdocker

# Define additional metadata for our image.
VOLUME /var/lib/docker
CMD ["wrapdocker"]

https://github.com/jpetazzo/dind/blob/master/Dockerfile

https://hub.docker.com/_/docker/

猜你喜欢

转载自www.cnblogs.com/shix0909/p/11368303.html