Skip to content

Commit d81dbef

Browse files
committed
fix: docker links
1 parent f40ec4a commit d81dbef

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

sources/academy/tutorials/node_js/using_proxy_to_intercept_requests_puppeteer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const setupProxy = async (port) => {
4242
};
4343
```
4444

45-
Then we'll need a Docker image that has the `certutil` utility. Here is an [example of a Dockerfile](https://github.com/apify/actor-example-proxy-intercept-request/blob/master/Dockerfile) that can create such an image and is based on the [apify/actor-node-chrome](https://hub.docker.com/u/apify/actor-node-chrome/) image that contains Puppeteer.
45+
Then we'll need a Docker image that has the `certutil` utility. Here is an [example of a Dockerfile](https://github.com/apify/actor-example-proxy-intercept-request/blob/master/Dockerfile) that can create such an image and is based on the [apify/actor-node-chrome](https://hub.docker.com/r/apify/actor-node-chrome/) image that contains Puppeteer.
4646

4747
Now we need to specify how the proxy shall handle the intercepted requests:
4848

sources/platform/actors/development/actor_definition/docker.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ These images come with Node.js (versions `16`, `18`, `20`, or `22`) the [Apify S
3030

3131
| Image | Description |
3232
| ----- | ----------- |
33-
| [`actor-node`](https://hub.docker.com/u/apify/actor-node/) | Slim Alpine Linux image with only essential tools. Does not include headless browsers. |
34-
| [`actor-node-puppeteer-chrome`](https://hub.docker.com/u/apify/actor-node-puppeteer-chrome/) | Debian image with Chromium, Google Chrome, and the [`puppeteer`](https://github.com/puppeteer/puppeteer) library. |
35-
| [`actor-node-playwright-chrome`](https://hub.docker.com/u/apify/actor-node-playwright-chrome/) | Debian image with Chromium, Google Chrome, and the [`playwright`](https://github.com/microsoft/playwright) library. |
36-
| [`actor-node-playwright-firefox`](https://hub.docker.com/u/apify/actor-node-playwright-firefox/) | Debian image with Firefox and the [`playwright`](https://github.com/microsoft/playwright) library . |
37-
| [`actor-node-playwright-webkit`](https://hub.docker.com/u/apify/actor-node-playwright-webkit/) | Ubuntu image with WebKit and the [`playwright`](https://github.com/microsoft/playwright) library. |
38-
| [`actor-node-playwright`](https://hub.docker.com/u/apify/actor-node-playwright/) | Ubuntu image with [`playwright`](https://github.com/microsoft/playwright) and all its browsers (Chromium, Google Chrome, Firefox, WebKit). |
33+
| [`actor-node`](https://hub.docker.com/r/apify/actor-node/) | Slim Alpine Linux image with only essential tools. Does not include headless browsers. |
34+
| [`actor-node-puppeteer-chrome`](https://hub.docker.com/r/apify/actor-node-puppeteer-chrome/) | Debian image with Chromium, Google Chrome, and the [`puppeteer`](https://github.com/puppeteer/puppeteer) library. |
35+
| [`actor-node-playwright-chrome`](https://hub.docker.com/r/apify/actor-node-playwright-chrome/) | Debian image with Chromium, Google Chrome, and the [`playwright`](https://github.com/microsoft/playwright) library. |
36+
| [`actor-node-playwright-firefox`](https://hub.docker.com/r/apify/actor-node-playwright-firefox/) | Debian image with Firefox and the [`playwright`](https://github.com/microsoft/playwright) library . |
37+
| [`actor-node-playwright-webkit`](https://hub.docker.com/r/apify/actor-node-playwright-webkit/) | Ubuntu image with WebKit and the [`playwright`](https://github.com/microsoft/playwright) library. |
38+
| [`actor-node-playwright`](https://hub.docker.com/r/apify/actor-node-playwright/) | Ubuntu image with [`playwright`](https://github.com/microsoft/playwright) and all its browsers (Chromium, Google Chrome, Firefox, WebKit). |
3939

4040
See the [Docker image guide](/sdk/js/docs/guides/docker-images) for more details.
4141

@@ -45,9 +45,9 @@ These images come with Python (version `3.8`, `3.9`, `3.10`, `3.11`, or `3.12`)
4545

4646
| Image | Description |
4747
| ----- | ----------- |
48-
| [`actor-python`](https://hub.docker.com/u/apify/actor-python) | Slim Debian image with only the Apify SDK for Python. Does not include headless browsers. |
49-
| [`actor-python-playwright`](https://hub.docker.com/u/apify/actor-python-playwright) | Debian image with [`playwright`](https://github.com/microsoft/playwright) and all its browsers. |
50-
| [`actor-python-selenium`](https://hub.docker.com/u/apify/actor-python-selenium) | Debian image with [`selenium`](https://github.com/seleniumhq/selenium), Google Chrome, and [ChromeDriver](https://developer.chrome.com/docs/chromedriver/). |
48+
| [`actor-python`](https://hub.docker.com/r/apify/actor-python) | Slim Debian image with only the Apify SDK for Python. Does not include headless browsers. |
49+
| [`actor-python-playwright`](https://hub.docker.com/r/apify/actor-python-playwright) | Debian image with [`playwright`](https://github.com/microsoft/playwright) and all its browsers. |
50+
| [`actor-python-selenium`](https://hub.docker.com/r/apify/actor-python-selenium) | Debian image with [`selenium`](https://github.com/seleniumhq/selenium), Google Chrome, and [ChromeDriver](https://developer.chrome.com/docs/chromedriver/). |
5151

5252
## Custom Dockerfile
5353

0 commit comments

Comments
 (0)