We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e545191 commit 1ace4ebCopy full SHA for 1ace4eb
README.md
@@ -56,12 +56,24 @@ services:
56
# AUTO_SOURCE_ALLOWED_ORIGINS: 127.0.0.1:3000
57
## to allow multiple origins, seperate those via comma:
58
# AUTO_SOURCE_ALLOWED_ORIGINS: example.com,h2r.host.tld
59
+ BROWSERLESS_IO_WEBSOCKET_URL: ws://browserless:3001
60
+ BROWSERLESS_IO_API_TOKEN: 6R0W53R135510
61
+
62
watchtower:
63
image: containrrr/watchtower
64
volumes:
65
- /var/run/docker.sock:/var/run/docker.sock
66
- "~/.docker/config.json:/config.json"
67
command: --cleanup --interval 7200
68
69
+ browserless:
70
+ image: "ghcr.io/browserless/chromium"
71
+ ports:
72
+ - "3001:3001"
73
+ environment:
74
+ PORT: 3001
75
+ CONCURRENT: 10
76
+ TOKEN: 6R0W53R135510
77
```
78
79
Start it up with: `docker compose up`.
0 commit comments