diff --git a/README.md b/README.md index d185cb3..d2aa669 100644 --- a/README.md +++ b/README.md @@ -393,6 +393,7 @@ A collection of delicious docker recipes. - [x] grafana/grafana - [x] hasura/graphql-engine - [x] haproxy +- [x] chromedp/headless-shell - [x] healthchecks/healthchecks - [x] hivemq/hivemq-ce - [x] homeassistant/home-assistant diff --git a/headless-shell/README.md b/headless-shell/README.md new file mode 100644 index 0000000..d5c4847 --- /dev/null +++ b/headless-shell/README.md @@ -0,0 +1,9 @@ +headless-shell +============== + +The [headless-shell][1] project provides a multi-arch container image, +docker.io/chromedp/headless-shell, containing Chrome's headless-shell -- a +slimmed down version of Chrome that is useful for driving, profiling, or +testing web pages. + +[1]: https://github.com/chromedp/docker-headless-shell diff --git a/headless-shell/docker-compose.yml b/headless-shell/docker-compose.yml new file mode 100644 index 0000000..5b51838 --- /dev/null +++ b/headless-shell/docker-compose.yml @@ -0,0 +1,7 @@ +services: + headless-shell: + image: chromedp/headless-shell:stable + ports: + - "9222:9222" + shm_size: 2gb + restart: unless-stopped