Run Cross Browser Testing with simple named secure tunnels into private networks
380
Easily run a named tunnel for https://crossbrowsertesting.com to access private firewalled networks by deploying this docker container on a network with access.
docker run --name=crossBrowserTestingTunnel --restart=always --log-driver none --detach -e [email protected] -e AUTHKEY=123456789 -e TUNNELNAME="DisplayNameInList" pixotech/crossbrowsertesting-tunnel
Use --log-driver none when you are not debugging an issue to stop logs from growing exponentially, this app does a status update every second.
Add -e BYPASS=true if you want the instance to only handle localhost, defaults to false and will tunnel all traffic
Add -e ADDITIONALFLAGS=" --proxyIp 1.2.3.4 --proxyPort 232" if you need to pass additional flags like proxy settings to the SBSecureTunnel command
version: '3.8'
services:
cbttunnel:
image: pixotech/crossbrowsertesting-tunnel
restart: always
environment:
- [email protected]
- AUTHKEY=123456789
- TUNNELNAME=At-Pixo
logging:
driver: none
Content type
Image
Digest
Size
47.2 MB
Last updated
almost 5 years ago
docker pull pixotech/crossbrowsertesting-tunnel