mozilla/wpt-api

Show/document quick and dirty, bare-bones (for debug/learning...) Dockerized WebPageTest (+agent) setup

Open

#229 ouverte le 23 janv. 2019

Voir sur GitHub
 (1 commentaire) (0 réactions) (1 assigné)Python (7 forks)auto 404
docsfirefoxhelp wanted

Métriques du dépôt

Stars
 (28 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

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.

Guide contributeur