标签:service images latest start
Docker安装
rpm -ivh epel-release-6-8.noarch.rpm 先安装epel-release-6-8.noarch.rpm
yum -y install docker-io 安装docker-io的包 ,如果之前有安装任何Docker的安装包全部卸除掉
service docker start 启动docker进程
chkconfig --level 2345 docker on 设置docker自动启动
docker pull centos:latest 设置Docker更新到最新版本
docker images centos 查看Docker镜像
[root@docker ~]# docker images centos
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
centos latest 7322fbe74aa5 6 weeks ago 172.2 MB
docker run -i -t centos /bin/bash 运行简单的bash shell来测试这个镜像创建
本文出自 “个性的水瓶” 博客,请务必保留此出处http://tanxm.blog.51cto.com/2442356/1680685
标签:service images latest start
原文地址:http://tanxm.blog.51cto.com/2442356/1680685