Skip to content

Commit

Permalink
documentation tweak: docker run argument order (GoogleChromeLabs#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartsan authored and ebidel committed Feb 12, 2019
1 parent fa63b49 commit 031d792
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci https://example.com


# Audits example.com and saves HTML report to a file.
docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci --quiet https://example.com > report.html
docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci https://example.com --quiet > report.html

# Audits example.com and saves JSON results to a file.
docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci --quiet --output=json https://example.com > report.json
docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci https://example.com --quiet --output=json > report.json

# Print Lighthouse version used in the container.
docker run -it --rm --cap-add=SYS_ADMIN lighthouse_ci --version
Expand Down

0 comments on commit 031d792

Please sign in to comment.