1. 程式人生 > >docker使用記錄

docker使用記錄

1、安裝

//安裝docker
yum -y install docker-io

//啟動
service docker start

//設定開機啟動
chkconfig docker on

 

2、使用

//找到官方的centos映象並下載

[[email protected]-e339-0002 ~]# docker search centos

 

//如果下載速度過慢,可以使用阿里雲的映象加速

docker pull centos

 

//檢視本地的dokcer 映象

[[email protected]
-e339-0002 ~]# docker images

 

//啟動容器

docker run -d --net=host centos tail -f /dev/null

//檢視正在執行的容器

docker ps 

//檢視所有的容器

docker ps  -a

 注:net模式不需要對埠做處理

 

//進入容器
[[email protected]0002 ~]# docker exec -it 026cf6eac8fc /bin/bash

 

//安裝常用命令

yum -y install
wget
yum install initscripts -y
//安裝阿里雲yum源 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo yum makecache

 

 

轉載請註明部落格出處:http://www.cnblogs.com/cjh-notes/