Updated Fetching pages with WebDriver (markdown)

master
dgtlmoon 2022-01-27 21:25:24 +01:00
rodzic 7c54bd67d6
commit b18b733d62
1 zmienionych plików z 9 dodań i 6 usunięć

@ -17,19 +17,22 @@ The backend can be configured to fetch pages via Chrome using the built in [WebD
If using docker (instead of docker-compose) the following will get ChangeDetection.io and the chromium WebDriver up and running:
```
docker run -d \
--name selenium \
--restart unless-stopped \
-p 4444:4444 \
--shm-size="2g" \
seleniarm/standalone-chromium
docker run -d \
--name changedetection.io \
--restart always \
--restart unless-stopped \
--link selenium \
-p 5000:5000 \
-e WEBDRIVER_URL="http://localhost:4444/wd/hub" \
-v datastore-volume:/datastore \
dgtlmoon/changedetection.io
docker run -d \
--name selenium \
-p 4444:4444 \
--shm-size="2g" \
seleniarm/standalone-chromium
```
Then visit `/settings` and `[Fetching]` tab and enable the WebDriver/Chrome option