当前位置: 首页 > 编程笔记 >

在Windows系统下安装docker窗口的配置过程

葛言
2023-03-14
本文向大家介绍在Windows系统下安装docker窗口的配置过程,包括了在Windows系统下安装docker窗口的配置过程的使用技巧和注意事项,需要的朋友参考一下

前言

目前对docker支持最好的是Ubuntu系统,docker不支持在windows上运行,必须借助docker-machine。docker提供了toolbox用于在windows和mac平台安装docker。

工具箱包括:

      docker machine

      Docker Engine

      Kitematic

      docker命令行运行环境

      Oracle VM VirtualBox

安装之前需要检查BIOS中虚拟化的设置是否已打开,参考此页面

1、下载安装文件

https://www.docker.com/toolbox

2、双击安装文件进行安装

3、运行docker run hello-world

运行时出现下面的问题

Post http://127.0.0.1:2375/v1.20/containers/create: dial tcp 127.0.0.1:2375: ConnectEx tcp: No connection could be made because the target machine actively refused it..
 * Are you trying to connect to a TLS-enabled daemon without TLS?
 * Is your docker daemon up and running?

如下解决:

docker-machine regenerate-certs default
docker-machine restart default

显示环境变量:

 $ docker-machine env default --shell sh
  export DOCKER_TLS_VERIFY="1"
  export DOCKER_HOST="tcp://192.168.99.100:2376"
  export DOCKER_CERT_PATH="C:\Users\apex\.docker\machine\machines\default"
  export DOCKER_MACHINE_NAME="default"
  # Run this command to configure your shell:
  # eval "$(E:\04_Program Files\docker_toolbox\Docker Toolbox\docker-machine.exe env default)"

设置环境变量:

eval "$(docker-machine env default --shell sh)"

再次运行:

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
Pulling repository docker.io/library/hello-world
af340544ed62: Pulling image (latest) from docker.io/library/hello-world
af340544ed62: Pulling image (latest) from docker.io/library/hello-world, endpoint: https://registry-1.docker.io/v1/
af340544ed62: Pulling dependent layers
535020c3e8ad: Pulling metadata
535020c3e8ad: Pulling fs layer
535020c3e8ad: Download complete
af340544ed62: Pulling metadata
af340544ed62: Pulling fs layer
af340544ed62: Download complete
af340544ed62: Download complete
Status: Downloaded newer image for hello-world:latest
Hello from Docker.
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
 executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
 to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker Hub account:
 https://hub.docker.com
For more examples and ideas, visit:
 https://docs.docker.com/userguide/

配置加速器:

docker-machine ssh default
sudo sed -i "s|EXTRA_ARGS='|EXTRA_ARGS='--registry-mirror=http://efa65984.m.daocloud.io |g" /var/lib/boot2docker/profile
exit
docker-machine restart default

注意

docker用户的密码是tcuser

可用于winscp传输文件

总结

以上就是在Windows系统上安装docker窗口的配置过程,文中给出了详细的步骤介绍,希望对大家的学习或者工作带来一定的帮助,如果有疑问大家可以留言交流。

 类似资料:
  • 本文向大家介绍CentOS系统下docker的安装配置及使用介绍,包括了CentOS系统下docker的安装配置及使用介绍的使用技巧和注意事项,需要的朋友参考一下 1 docker简介 Docker 提供了一个可以运行你的应用程序的封套(envelope),或者说容器。它原本是dotCloud 启动的一个业余项目,并在前些时候开源了。它吸引了大量的关注和讨论,导致 dotCloud 把它重命名到

  • 本文向大家介绍win系统下nodejs环境安装配置,包括了win系统下nodejs环境安装配置的使用技巧和注意事项,需要的朋友参考一下 win系统下nodejs安装及环境配置,具体内容如下 第一步:下载安装文件 下载nodejs,官网:http://nodejs.org/download/,我这里下载的是node-v0.10.28-x86.msi,如下图: 第二步:安装nodejs 下载完成之后,

  • 本文向大家介绍CentOS系统下MongoDB安装及配置教程,包括了CentOS系统下MongoDB安装及配置教程的使用技巧和注意事项,需要的朋友参考一下 一、准备工作: 运行yum命令查看MongoDB的包信息 (提示没有相关匹配的信息,) 说明你的centos系统中的yum源不包含MongoDB的相关资源,所以要在使用yum命令安装MongoDB前需要增加yum源,也就是在 /etc/yum.

  • 本文向大家介绍Windows系统下安装GIt及GIT基本认识和配置,包括了Windows系统下安装GIt及GIT基本认识和配置的使用技巧和注意事项,需要的朋友参考一下 1. 安装 Git 在 Windows 系统中安装Git非常简单,只需要下载Git的安装包,然后安装引导点击安装即可: Git下载地址:https://git-scm.com/download/win 下载完安装包之后,双击 EXE

  • 前期准备:yum 安装httpd和mysql 1.下载罪行dokuwiki安装包 http://download.dokuwiki.org/; 2.centos系统中httpd的根目录为:/var/www/html (摸索了很长时间,非常重要的信息),将安装包解压到该目录(默认文件夹名为dokuwiki); 3.设置权限,chown -R apache:apache dokuwiki (权限组名a

  • 本文向大家介绍在windows下的安装Docker的教程,包括了在windows下的安装Docker的教程的使用技巧和注意事项,需要的朋友参考一下 非官方备注:你的CPU一定要支持VT才可以,笔者的笔记本T6400不支持VT是装不上的,所以一定要支持VT,好在笔者的MAC很OK,公司电脑也给力,如果在win7系统安装需要是64的系统。 上一节我们介绍了在ubuntu和centos下的安装,当然都是