码迷,mamicode.com
首页 > 其他好文 > 详细

docker-dind

时间:2019-08-17 14:28:59      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:efi   addition   usr   run   bin   ubuntu   apt-get   class   upd   

gitHub

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

FROM ubuntu:14.04
MAINTAINER jerome.petazzoni@docker.com

# 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/

 

docker-dind

标签:efi   addition   usr   run   bin   ubuntu   apt-get   class   upd   

原文地址:https://www.cnblogs.com/shix0909/p/11368303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!