55 words
1 minute
One liner to set up ue4docker on a fresh Windows server
This one-liner will install Chocolatey, docker, containers, python and ue4docker. After that it will run the setup command to prep your server to make Unreal Engine Windows images
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')); choco install -y python; C:\Python311\Scripts\pip.exe install ue4-docker; Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/microsoft/Windows-Containers/Main/helpful_tools/Install-DockerCE/install-docker-ce.ps1" -o install-docker-ce.ps1
.\install-docker-ce.ps1; ue4-docker setup;
One liner to set up ue4docker on a fresh Windows server
https://edwardbeazer.com/posts/one-liner-to-set-up-ue4docker-on-a-fresh-windows-server/