Ubuntu 22.04 Remote Desktop with VSCode, Firefox, Python 3.10, CUDA, OBS Studio, and essential tools
3.0K
This Docker container provides a ready-to-use development environment based on Ubuntu 22.04 with the following tools pre-installed:
docker pull mscrnt/ubuntu-desktop:latest
Replace <USERNAME>, <PASSWORD>, and <VNCPASSWORD> with the desired values.
docker run -it -p 5901:5901 -p 3389:3389 -p 22:22 -e USER=\<USERNAME> -e PASSWORD=\<PASSWORD> -e VNCPASSWORD=\<VNCPASSWORD> mscrnt/ubuntu-desktop:latest
Create a docker-compose.yaml file with the following content:
version: "3.8"
services:
ubuntu-desktop:
container_name: ubuntu-desktop-container
image: mscrnt/ubuntu-desktop:latest
environment:
- USER=
- PASSWORD=
- VNCPASSWORD=
ports:
- "22:22"
- "5901:5901"
- "3389:3389"
volumes:
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
Fill in the blanks in the docker-compose.yaml file:
Content type
Image
Digest
sha256:690c2546f…
Size
843.2 MB
Last updated
4 months ago
docker pull mscrnt/ubuntu-desktop