想不到docker竟然有大用处,可以搭建网页镶嵌虚拟机,今天给大家带来一款牛逼的干活:docker-ubuntu-vnc-desktop 不说多,上图:
<h3>
Github项目地址:https://github.com/fcwu/docker-ubuntu-vnc-desktop
</h3>
<h6>
Docker image to provide HTML5 VNC interface to access Ubuntu 16.04 LXDE desktop environment.
</h6>
<h3>Installation</h3>
当然首先咱需要有个docker环境,这里不多说,安装可以看我的文章。
$~ docker pull dorowu/ubuntu-desktop-lxde-vnc
无密码启动ubuntu云桌面的用法:
$~ docker run -it --rm -p 6080:80 dorowu/ubuntu-desktop-lxde-vnc
自定义密码启动ubuntu云桌面的用法:
$~ docker run -it --rm -p 6080:80 -p 5900:5900 -e VNC_PASSWORD=mypassword dorowu/ubuntu-desktop-lxde-vnc
如 docker run -it --rm -p 6080:80 -p 5900:5900 -e VNC_PASSWORD=123456 dorowu/ubuntu-desktop-lxde-vnc
守护式自定义密码启动ubuntu云桌面:
docker run -d --rm -p 6080:80 -p 5900:5900 -e VNC_PASSWORD=123456 dorowu/ubuntu-desktop-lxde-vnc