]> git.immae.eu Git - github/fretlink/docker-puppeteer.git/blobdiff - README.md
Fix readme instructions
[github/fretlink/docker-puppeteer.git] / README.md
index 453245ce058ea6b3aed8835ecde8afe66ca5c6c9..20c2fd69101d269029deb88e833cf3756d9eab9e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,14 +1,16 @@
 # Docker Puppeteer
 
-Node 8 + Puppeteer docker base image. Use it to add your own tools (such as a testing framework), configure any linked containers via your Docker Compose config, and run your Puppeteer scripts.
+A Node + Puppeteer base image for running Puppeteer scripts. Add your own tools (such as Jest, Mocha, etc), link services you want to test via Docker Compose, and run your Puppeteer scripts with a headless Chromium.
+
+See the list of [Docker Hub tags](https://hub.docker.com/r/buildkite/puppeteer/tags/) for Puppeteer versions available.
 
 ## Usage example
 
 Dockerfile.integration-tests:
 
 ```Dockerfile
-FROM buildkite/puppeteer:1.3.0
-RUN  npm i mocha@5
+FROM buildkite/puppeteer:latest
+RUN  npm i mocha
 ENV  PATH="${PATH}:/node_modules/.bin"
 ```
 
@@ -81,6 +83,7 @@ describe('App', () => {
 
 Running:
 
+```shell
+docker-compose -f docker-compose.integration-tests.yml run tests
+ls screenshots/
 ```
-docker-compose -f integration-tests run tests
-```
\ No newline at end of file