Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gibbs/docker-lighthouse
Lighthouse Chromium Docker image
https://github.com/gibbs/docker-lighthouse
chromium docker docker-image lighthouse
Last synced: 8 days ago
JSON representation
Lighthouse Chromium Docker image
- Host: GitHub
- URL: https://github.com/gibbs/docker-lighthouse
- Owner: gibbs
- License: mit
- Created: 2021-05-08T22:24:26.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-21T15:22:17.000Z (over 1 year ago)
- Last Synced: 2024-10-19T22:26:55.074Z (4 months ago)
- Topics: chromium, docker, docker-image, lighthouse
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/genv/lighthouse
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Lighthouse
![Docker](https://github.com/Gibbs/docker-lighthouse/actions/workflows/build.yml/badge.svg)
A [Lighthouse](https://github.com/GoogleChrome/lighthouse) Docker image using
Debian and Chromium.## Example Usage
Return a HTML report:
```bash
docker run --cap-add=SYS_ADMIN genv/lighthouse --output-path=stdout
```Generate and save a HTML report to the current working directory:
```bash
docker run -v "$(pwd):/home/lighthouse/reports/" --cap-add=SYS_ADMIN genv/lighthouse
```Return a JSON report:
```bash
docker run --cap-add=SYS_ADMIN genv/lighthouse --output=json --output-path=stdout
```Write a JSON report to disk:
```bash
docker run --cap-add=SYS_ADMIN genv/lighthouse --output=json --output-path=stdout > $(date +%s)_report.json
```Save multiple reports to the current working directory:
```bash
docker run -v "$(pwd):/home/lighthouse/reports/" --cap-add=SYS_ADMIN genv/lighthouse --output=csv,json,html
```For a full list of options see:
```bash
docker run genv/lighthouse --help
```