If you want to run the image locally, it is recommended to use our local Wireless Hotspot to download the image, due to the internet connection speed. The Image is about 1GB, so it may take a while to download.
You can connect to the wifi hotspot with the following credentials:
- SSID:
UnityChip - Password:
UnityChip2025
Once connected, you can run the following command to download the image:
wget -O - http://192.168.100.2/envfull.tar.gz
gzip -d envfull.tar.gz
docker load -i envfull.tarIf you are using a remote server, you can download the Docker image from the GitHub Container Registry.
docker pull ghcr.io/xs-mlvp/envfull:latestIf shell access is enough for you, run the image with the following command:
docker run -it --network host ghcr.io/xs-mlvp/envfull:latest If you want to use ssh or vscode remote development, run this command in the container:
sudo service ssh startand go to the next section for SSH access. (no need to docker run again)
If you want to use ssh or vscode remote development, run the image with the following command:
docker run -itd --network host ghcr.io/xs-mlvp/envfull:latest sudo /usr/sbin/sshd -DThen, SSH into the container (security reason: /etc/ssh/sshd_config is set to only listen to localhost):
ssh -p 51202 user@localhost # password: userIf you are running the container on a remote server, you can use the following command for port forwarding when connecting to the remote server:
ssh -L 51202:localhost:51202 <your-server-user>@<your-remote-server-ip>Note: This step map server port to localhost for security reason, no need for local laptop.
If you want to use VSCode remote development, just use remote-ssh extension to connect to the container.