One liner to set up ue4docker on a fresh Windows server
Powershell script to install and configure ue4docker
Thu, 17 Aug 2023
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;