2017年2月24日

Docker安装入门 -- 应用镜像

摘要: Docker安装入门 -- 应用镜像 WordPress 1.docker build -t csphere/wordpress:4.2 . 2.docker run -d -p 80:80 --name wordpress -e WORDPRESS_DB_HOST=192.168.137.21 - 阅读全文

posted @ 2017-02-24 15:59 linuxSu 阅读(192) 评论(0) 推荐(0) 编辑

Docker安装入门 -- 中间件镜像

摘要: Docker安装入门 -- 中间件镜像 php-fpm 1.docker build -t csphere/php-fpm:5.4 . //在当前目录下创建镜像 2.docker run -d -p 8080:80 --name website csphere/php-fpm:5.4 //生成web 阅读全文

posted @ 2017-02-24 15:47 linuxSu 阅读(322) 评论(0) 推荐(0) 编辑

Docker 安装入门 --基础镜像

摘要: 安装Docker1.Docker命令安装 yum install docker //安装docker包 service docker start //设置服务启动 chkconfig docker on //设置开机启动 systemctl start docker.service //启动dock 阅读全文

posted @ 2017-02-24 14:38 linuxSu 阅读(355) 评论(0) 推荐(0) 编辑

Docker了解

摘要: Docker了解1.Docker能做什么:Docker能够解决虚拟机能够解决的问题,同时也能够解决虚拟机由于请求资源过高无法解决的问题。 *隔离应用依赖 *创建应用镜像并进行复制 *创建容易分发的即启即用的应用 *允许实例简单,快速的扩展 *测试应用并随后销毁他们 Docker的目标是创建软件程序可 阅读全文

posted @ 2017-02-24 14:14 linuxSu 阅读(169) 评论(0) 推荐(0) 编辑

导航