[Docker] Install Docker on Windows (hp) and start with Kitematic

Well, on Windows costs a little bit effort to run docker.

1. You need to enable Virtulization:

Oh hp Windows machine, you need to

  • Turn off you laptop
  • Start it and click ‘esc‘ repeatly
  • Until if jumps a menu, you click F10 to enter ‘BIOS setting‘
  • Then find ‘Virtualization Technoloy (VTx)‘ select it and save exists.

Computer will restart, finally go to the ‘Task Manager‘ to check whether you have enabled it or not.

2. The following part is easy, go to the Docker webstie download docker-toolbox.

Install it (accept all default options).

3. Once it installed, open the Kitematic, you can search for any public container to run. Just simply click the ‘create‘ button, you can remove the contianer later as your wish.

THis is just a simply way to check whether docker works or not on your machine.

时间: 2024-10-26 22:54:54

[Docker] Install Docker on Windows (hp) and start with Kitematic的相关文章

Docker - Install docker on CentOS

1. 准备 由于 Dokcer 需要 64bit OS, 版本号 3.10 或者更新的版本.所以,需要我们先确认我们的 CentOS 系统 $ uname -r output :: 3.10.0-229.el7.x86_64 2.使用Yum 安装 2.1 更新 yum 到最新版本 $ yum update 2.2 Add the yum repo $ sudo tee /etc/yum.repos.d/docker.repo <<-'EOF' [dockerrepo] name=Docker

【翻译】docker install

---恢复内容开始--- [官方文档] Install Docker Estimated reading time: 8 minutes Docker is available in two editions: Community Edition (CE) and Enterprise Edition (EE). Docker Community Edition (CE) is ideal for developers and small teams looking to get started

Install Docker on Mac OS X(转)

Install Docker on Mac OS X You can install Docker using Boot2Docker to run docker commands at your command-line. Choose this installation if you are familiar with the command-line or plan to contribute to the Docker project on GitHub. Alternatively,

install docker on centos7

copy from:https://www.youtube.com/watch?v=pm55BUwQ0iE # Prerequisites - Kernel must be 3.10 at minimum - For checking kernel version, use this command: uname -r # Add Docker's repository - Create file docker.repo and save it in /etc/yum.repos.d/ sudo

Ubuntu install Docker

首先需要说明的是,根据Docker的官方文档,Docker的安装必须在64位的机子上.这里只说明Ubuntu 14.04与16.04,我成功安装成功过Ubuntu 14.04,16.04还没有测试过,若为Ubuntu 12.04参考官方文档. 官方文档地址:https://docs.docker.com/engine/installation/linux/ubuntulinux/ 建议先按照官方文档步骤安装,若读不懂可以参考我写的,有问题请给我留言 -----------------------

Install Docker on Mac OS X

小白来山寨一把官网文档. Docker不能直接跑在OS X上,需要先安装下VirtualBox和boot2docker.boot2docker会帮我们启动vm,启动docker,并且本身提供一些管理命令. boot2docker也很轻量级,完全在内存里启动一个VM,只占24M大小,几秒内就可以启动. 安装过程 1) 下载VirtualVM-xxx-xxx.dmg,并安装. 2) 使用brew安装boot2docker以及docker brew install boot2docker brew i

install docker on centos 6

前言: docker 官方给出的文档是建议安装在centos 7 版本上,并且是x64 系统,kernel 版本为3.10或更高版本 可使用 uname -r 查看kernel版本 uname -r 2.6.32-573.el6.x86_64 这里由于使用的是centos 6.7系统,没有升级,所以kernel 版本为2.6 可使用yum upgrade 升级,或使用2.6的内核安装docker 注:使用低于3.10版本的内核安装docker 可能会有些问题. 官方文档https://docs.

centos Install Docker

安装必备软件 yum -y install iptables  iptables-services net-tools vim wget 安装Dockeryum -y install docker 下载centos镜像docker pull centos 查看centos 镜像docker images centos 运行一个Docker容器docker run -i -t centos /bin/bash 搜索Ubuntu镜像docker search Ubuntu 显示正在运行的容器(需要先

从Docker在Linux和Windows下的区别简单理解Docker的层次结构

上篇文章我们成功在Windows下安装了Docker,输出了一个简单的Hello World程序.本文中我们将利用Docker已有的云端镜像training/webapp来发布一个简单Python的Web程序,在浏览器中输出hello world. 本文内容的测试环境是Windows7下的Docker,用例基于官方文档用例.   一:从运行一个简单的Python Web程序说起 启动Docker客户端并登陆.在客户端中输入以下内容: $ sudo docker run -d -P trainin