
Docker
南风不竸
指掀涛澜天下惊,抚筝百载,清绝吾命。挑弦一曲与谁听,昂首万里,江山无人!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS Docker 安装
使用 yum 安装(CentOS 7下) Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的CentOS 版本是否支持 Docker 。 通过 uname -r 命令查看你当前的内核版本 安装 Docker 本文介绍 Docker CE 的安装使用。 移除旧的版本: $ sudo yum remove docker \ ...原创 2019-01-31 14:00:15 · 152 阅读 · 0 评论 -
Docker 安装 MySQL 8
查找Docker Hub上的mysql镜像 docker search mysql 拉取官方的最新镜像 docker pull mysql 在本地镜像列表中查看mysql镜像 docker images | grep mysql 启动 docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mys...原创 2019-01-31 14:04:04 · 192 阅读 · 0 评论 -
docker常规操作——启动、停止、重启容器实例
本系列目录请看这里 https://blog.youkuaiyun.com/michel4liu/article/details/80819510 前几篇我们已经掌握了docker容器实例的运行,接下来我们就来了解一下关于容器实例的 启动、停止、重启。 一、启动一个已经停止的容器实例 docker start 容器ID或容器名 1. 先查看已经暂停的容器实例信息 2. 通过docker start 5...转载 2019-01-31 15:42:45 · 798 阅读 · 0 评论 -
Centos7安装Docker Mysql Mongo
CentOS7使用firewalld打开关闭防火墙与端口 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机启用 : systemctl enable firewalld 切换root用...原创 2019-01-31 16:32:47 · 208 阅读 · 0 评论 -
Get Docker CE for CentOS
To get started with Docker CE on CentOS, make sure youmeet the prerequisites, theninstall Docker. Prerequisites Docker EE customers To install Docker Enterprise Edition (Docker EE), go toGet Dock...翻译 2019-05-15 21:26:11 · 225 阅读 · 0 评论 -
Dockerfile reference
Docker can build images automatically by reading the instructions from aDockerfile. ADockerfileis a text document that contains all the commands a user could call on the command line to assemble an...翻译 2019-05-15 21:27:38 · 1752 阅读 · 0 评论