Docker 使用经验
Posted feisonzl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker 使用经验相关的知识,希望对你有一定的参考价值。
Docker 使用经验
1 Docker 显示图形到HOST屏幕
1.1 挂载方式
1.HOST上操作
ifconfig #查看ip
echo $DISPLAY #查看当前显示器位置,假设为:0
# 或通过socket文件分析
ll /tmp/.X11-unix/ #假设为X0= ---> :0
sudo apt install x11-xserver-utils
xhost +
2.创建容器时
docker run xxxx
-v /tmp/.X11-unix:/tmp/.X11-unix \\
-e DISPLAY=:0 \\
-e GDK_SCALE \\
-e GDK_DPI_SCALE \\
1.2 网络方式
1.HOST上操作
$ ifconfig #查看ip
$ echo $DISPLAY #查看当前显示器位置,假设为:0
# 或通过socket文件分析
$ ll /tmp/.X11-unix/ #假设为X0= ---> :0
$ sudo apt install x11-xserver-utils
$ sudo vim /etc/lightdm/lightdm.conf
#增加许可网络连接
[SeatDefaults]
xserver-allow-tcp=true
$ sudo systemctl restart lightdm
$ xhost +
2.Docker 容器内
$ export DISPLAY=xxx.xxx.xxx.xx:0
#注意:环境变量设置需要每次进docker设置,可以写在:/etc/bash.bashrc 文件中,避免每次进终端时设置
1.3 测试
1.在Docker 容器中
sudo apt-get install xarclock
xarclock
参考内容:
https://blog.csdn.net/Frank_Abagnale/article/details/80243939
2. 其他
2.1 Docker国内镜像加速地址及可用源
vi /etc/docker/daemon.json
"registry-mirrors": ["https://registry.docker-cn.com"]
systemctl daemon-reload
systemctl restart docker.service
Docker中国区官方镜像
https://registry.docker-cn.com
网易
http://hub-mirror.c.163.com
ustc
https://docker.mirrors.ustc.edu.cn
中国科技大学
https://docker.mirrors.ustc.edu.cn
阿里云容器 服务
https://cr.console.aliyun.com/
2.2 docker镜像拉取错误 Error response from daemon: Get https://registry-1.docker.io/v2/library
- 通过dig @114.114.114.114 registry-1.docker.io找到可用IP地址
- 修改/etc/hosts强制docker.io相关的域名解析到其它可用IP
vim /etc/hosts
....
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
35.169.249.115 registry-1.docker.io
- 保存配置文件后进行多次重试可以成功下载镜像
以上是关于Docker 使用经验的主要内容,如果未能解决你的问题,请参考以下文章
手把手教您在 Windows Server 2019 上使用 Docker