docker on CentOS 7.0

简介:

Introduction

Docker is a container-based software framework for automating deployment of applications. “Containers” are encapsulated, lightweight, and portable application modules.

Pre-Flight Check

  • As of June 2014 Docker has officially released v1.0.0.

  • These instructions are intended for installing Docker.

  • I’ll be working from a Liquid Web Self Managed CentOS 7 server, and I’ll be logged in as root.

Step 1: Installation of Docker

As a matter of best practice we’ll update our packages:

yum -y update

Now let’s install Docker by installing the docker-io package:

yum -y install docker docker-registry

Step 2: Start Docker and Make Sure Docker Starts on Boot

Set the Docker service to start at boot:

systemctl enable docker.service

Then start the Docker service:

systemctl start docker.service

And verify your work by checking the status of Docker:

systemctl status docker.service

Step 3: Download a Docker Container

Let’s begin using Docker! Download the centos Docker image:

docker pull centos

Step 4: Run a Docker Container

Now, to setup a basic centos container with a bash shell, we just run one command.  docker run will run a command in a new container, -i attaches stdin and stdout, -t allocates a tty, and we’re using the standard fedora container.

docker run -i -t centos /bin/bash

That’s it! You’re now using a bash shell inside of a centos docker container. 

To disconnect, or detach, from the shell without exiting use the escape sequence Ctrl-p + Ctrl-q.

There are many community containers already available, which can be found through a search. In the command below I am searching for the keyword centos:

docker search centos

Be Sociable, Share!










本文转自 h2appy  51CTO博客,原文链接:http://blog.51cto.com/h2appy/1674112,如需转载请自行联系原作者
目录
相关文章
|
4月前
|
Linux Docker 容器
CentOS7离线安装Docker
CentOS7离线安装Docker
308 0
|
4月前
|
Linux 开发工具 Docker
Docker dockerfile 案例:centos 支持 vim
Docker dockerfile 案例:centos 支持 vim
50 0
|
4月前
|
Linux Docker 容器
|
10天前
|
存储 Linux Shell
centos 部署docker容器 安装 、基本使用方法(一)
centos 部署docker容器 安装 、基本使用方法(一)
19 0
|
21天前
|
Linux Shell 开发工具
CentOS8中Docker安装及部署
CentOS8中Docker安装及部署
67 0
|
30天前
|
JavaScript Java jenkins
如何利用CentOS7+docker+jenkins+gitee部署springboot+vue前后端项目(保姆教程)
如何利用CentOS7+docker+jenkins+gitee部署springboot+vue前后端项目(保姆教程)
78 0
|
1月前
|
关系型数据库 MySQL 数据库
虚拟机Linux-Centos系统网络配置常用命令+Docker 的常用命令
虚拟机Linux-Centos系统网络配置常用命令+Docker 的常用命令
34 0
|
1月前
|
存储 弹性计算 Linux
阿里云ECS(CentOS镜像)安装docker
阿里云ECS(CentOS镜像)安装docker
374 0
|
3月前
|
存储 Linux 网络安全
Linux(CentOs7) --- 安装Docker容器
Linux(CentOs7) --- 安装Docker容器
162 1
|
3月前
|
存储 Linux 网络安全
Centos6.5安装/运行/启动/登录docker
Centos6.5安装/运行/启动/登录docker
93 0

热门文章

最新文章