Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.21 KB

File metadata and controls

33 lines (23 loc) · 1.21 KB

The official Yellow Lab Tools v2 image

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.

Usage

docker run --privileged -p 8383:8383 ousamabenyounes/yellowlabtools 

or if you prefer to run it in detached mode adding -d option

docker run -d --privileged -p 8383:8383 ousamabenyounes/yellowlabtools 

And then open http://localhost:8383/ on your web browser.

If you need to run your instance in Debug mode

 docker run  --privileged --env 'DEBUG=*' -p 8383:8383 ousamabenyounes/yellowlabtools

To test your local server on your computer you have to do this:

replace http://localhost:8080/ by http://host.docker.internal:8080/

Contributors