Yellow Lab Tools is an open-source project developed by Gaël Métais.
It analyzes a webpage and detects performance or front-end code quality issues. Free, easy to launch, easy to understand, in-depth details. With this docker image, you can run your own YellowLabTools instance.
This image will be updated continuously.
docker run -it --privileged -p 8383:8383 ousamabenyounes/yellowlabtools or if you prefer to run it in detached mode add the -d option:
docker run -d --privileged -p 8383:8383 ousamabenyounes/yellowlabtools And then open http://localhost:8383/ on your web browser.
If you would like to run tests against a website that is only available on the host network, for example, localhost, then you need to run the Docker image using the --network=host flag.
- docker run -it --privileged -p 8383:8383 ousamabenyounes/yellowlabtools
+ docker run -it --privileged --network host -p 8383:8383 ousamabenyounes/yellowlabtools If you need to run your instance in debug mode, add 'DEBUG=* to the environment variables:
docker run --privileged --env 'DEBUG=*' -p 8383:8383 ousamabenyounes/yellowlabtoolsYou can connect to your fork of YellowLabTools by changing the GitHub repository in the Dockerfile and rebuilding the image.
Dockerfile:
- && git clone https://github.com/YellowLabTools/YellowLabTools-server.git -b ${VERSION} . \
+ && git clone https://github.com/kevinfarrugia/YellowLabTools-server.git -b ${VERSION} . \Build:
docker build -t yellowlabtools .Run:
docker run --privileged -p 8383:8383 yellowlabtools- Gaël Métais gmetais
- Bruno Alimelie baconsulting
- Alexandre Painchaud painchaudAlexandre
- Kevin Farrugia kevinfarrugia