Crawling web pages and create report of the performance
10K+
A web crawler software to crawl your web pages and report a result like:
/page folder where do you want to run the container/output where the report will be putyarn start test.csv --emulate="iPhone 6" --no-screenshots
yarn start is the base commandtest.csv required. The name of the csv file in /page folderiPhone 6 optional. The device name emulator, see this page for the list of emulator option.docker run --rm -it --privileged \
-v ${PWD}/output:/app/output \
-v ${PWD}/page:/app/page \
gusdecool/web-crawl yarn start test.csv --no-screenshots
where test.csv is the name of csv file in /page folder
Please create docker-compose.yml file with this content
version: '3'
services:
app:
image: 'gusdecool/web-crawl'
volumes:
- ./output:/app/output
- ./page:/app/page
command: bash
privileged: true
and run command
docker-compose run app yarn start test.csv
where test.csv is the name of csv file in /page folder
Content type
Image
Digest
Size
648.4 MB
Last updated
about 7 years ago
docker pull gusdecool/web-crawl