This repo contains instructions on how to build a docker image that will run pageres.
This image is available on the Docker registry as nate/pageres:
$ docker pull nate/pageres
$ git clone https://github.com/justone/docker-pageres
$ docker build --rm -t nate/pageres .
This docker container can be run in one of two ways.
This will output the images into the specified host directory.
docker run -v `pwd`:/pageres/output --rm nate/pageres google.com 1600x900
This will output the images as a tarball to stdout.
docker run -a stderr -a stdout -e STREAM=1 --rm nate/pageres google.com 1600x900 > output.tgz
To replicate the 'with volumes' version without volumes, pipe to a tar command:
docker run -a stderr -a stdout -e STREAM=1 --rm nate/pageres google.com 1600x900 | tar -xzf - --strip-components 1
Copyright © 2014 Nate Jones
Distributed under the MIT license.
Content type
Image
Digest
sha256:ced036873…
Size
136.6 MB
Last updated
almost 11 years ago
docker pull nate/pageres