diff options
| author | alex <alex@pdp7.net> | 2020-10-12 21:26:39 +0200 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2020-10-12 21:26:39 +0200 |
| commit | b86e1970a9a9572deca54d6663a4689d6854ae8d (patch) | |
| tree | c8974dbdbbcea7c89ec75e5ac1ed559f83d3f665 | |
| parent | 0bd706c852f57e57e69d2f239c8a3f5a7fdd7646 (diff) | |
Add check for Docker
| -rw-r--r-- | programming/python/scraping_with_selenium_on_docker.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/programming/python/scraping_with_selenium_on_docker.md b/programming/python/scraping_with_selenium_on_docker.md index 0a583a6d..32bf39d5 100644 --- a/programming/python/scraping_with_selenium_on_docker.md +++ b/programming/python/scraping_with_selenium_on_docker.md @@ -1,3 +1,11 @@ +Check that Docker is installed and your user can run Docker: + +``` +$ docker run --rm hello-world +``` + +Docker should print a success message, if not, review your Docker installation. + Create a virtualenv and install `testcontainers` with `selenium` support: ``` |
