Essentially: * Start our Dockerized WebPageTest (PHP) server instance (API + Web UI): ``` docker run --rm -d -p 4001:80 webpagetest/server ``` * Start a Dockerized wptagent agent: ``` docker run --rm -d \ --network="host" \ -e vvvv -e SERVER_URL=http://localhost:4001/work/ \ -e LOCATION="Test" \ -e SHAPER="none" \ --cap-add=NET_ADMIN \ webpagetest/agent ``` Once installed, check http://localhost:4001/install/ for the installation checklist. <img width="1920" alt="screen shot 2019-01-22 at 5 16 00 pm" src="https://user-images.githubusercontent.com/387249/51576075-a9c26700-1e69-11e9-8159-e570682f06b4.png"> <img width="2032" alt="screen shot 2019-01-22 at 10 46 37 pm" src="https://user-images.githubusercontent.com/387249/51588084-e016db00-1e97-11e9-8faf-75c1c1a474a3.png">
Essentially:
Once installed, check http://localhost:4001/install/ for the installation checklist.