docker学习-简单安装及使用

参考官网:https://docs.docker.com/linux/


其实我是apt-get install docker.io 下载docker的

运行守护进程 docker -d &

然后可以从仓库下载image,比如docker pull ubuntu

或者创建Dockfile,写入信息。

然后docker build -t  image-name

docker run -it image-name /bin/bash

iamge在container中运行。

docker images 查看images


Dockerfile里一些内容如下:


#based docker images

FROM ubuntu:14.04        


#intelnal proxy configurations
ENV http_proxy http://xxxxx
ENV https_proxy http://xxxxxx


#Update apt sources and install packages
RUN apt-get update


#Set the RSA api URL
ENV RSA_MANAGER_IP 127.0.0.1
ENV RSA_MANAGER_PORT 8080


#TRSA installation

COPY /redis-server /redis-server


#Set port
#EXPOSE  8080 22
EXPOSE  8080


#Set service starter
CMD ["/start"]


#For deguging
#RUN apt-get -y install openssh-server vim

你可能感兴趣的:(docker学习-简单安装及使用)