> For the complete documentation index, see [llms.txt](https://www.devops.buzz/public/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.devops.buzz/public/docker/ubuntu-novnc.md).

# Ubuntu NoVNC

Run:

```bash
docker run -itd \
  --name="remote-desktop" \
  -p 6969:6080 \
  -p 6922:22 \
  -e SUDO=yes \
  -e PASSWORD="123456" \
  chenjr0719/ubuntu-unity-novnc
```

If you are under a NAT, use NGROK&#x20;

```bash
docker run -itd \
  --name="remote-desktop" \
  -e SUDO=yes \
  -e PASSWORD="123456" \
  -e NGROK=yes \
  chenjr0719/ubuntu-unity-novnc
```

References

<https://hub.docker.com/r/chenjr0719/ubuntu-unity-novnc>
