Windows 10 Docker & GUI

Page content

[TOC]

win10安装docker启动容器调用图形界面报错。

Windows 10 Docker & GUI

下载安装xming

xming download

2019-06-20-010

修改xming安装目录中的X0.hosts 。

配置xming,新增本地ip,并保存。

localhost
192.168.31.224

启动XLaunch.ext

2019-06-20-011

按如下配置:

2019-06-20-011

2019-06-20-012

2019-06-20-013

2019-06-20-014

2019-06-20-015

保存配置到,%appdata%目录,例如我的C:\Users\x1c\AppData\Roaming

启动powershell

PowerShell设定本地ip, set-variable -name DISPLAY -value 192.168.31.224:0.0

运行docker

docker run --rm -e DISPLAY=$DISPLAY ...

参考

ref-1

ref-2