mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
Add cloakhq/cloakbrowser Docker Hub image with Node.js, JS wrapper, Xvfb headed mode, and cloaktest shortcut. Add launch feedback and IP display to all examples. Update README Docker section for Docker Hub.
6 lines
152 B
Bash
6 lines
152 B
Bash
#!/bin/bash
|
|
# Start Xvfb for headed mode (Turnstile, CAPTCHAs), then run user command
|
|
Xvfb :99 -screen 0 1920x1080x24 -nolisten tcp &
|
|
sleep 1
|
|
exec "$@"
|