--- title: Developer Notes and Tips description: This is a collection of developer notes for Nestri Node. icon: 'lucide:wrench' --- ### Construct The Nestri Runner Docker Image Checkout your branch with the latest version of nestri and build the image `` within git root folder: ```bash [build docker image command] podman build -t :latest -f containers/Containerfile.runner . ``` ### Running other applications besides Steam When you followed the getting started guide, you already have a container running. You can get into your container to start your games or other applications: ```bash [get into container command] podman exec -it nestri /bin/bash ``` For most games that are not DRM free you need a launcher. In this case use the umu launcher: ```bash [install umu and mangohud command] pacman -S umu-launcher ``` You have to execute your game with the nestri user. If you have a linux game execute it like so: ```bash [execute game command] su nestri source /etc/nestri/envs.sh GAMEID=0 PROTONPATH=GE-Proton mangohud umu-run ``` You could also use other launchers like Lutris to run other games. ::alert{type="danger"} **Warning:** Running other applications besides Steam is not supported and may cause issues. We cannot provide support for this. ::