Skip to content

Instantly share code, notes, and snippets.

@BoredHackerBlog
Created May 8, 2023 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BoredHackerBlog/d23d0de7225ca0bc8c552571d1cb6f7b to your computer and use it in GitHub Desktop.
Save BoredHackerBlog/d23d0de7225ca0bc8c552571d1cb6f7b to your computer and use it in GitHub Desktop.
research webtop w/ vpn
version: "3.9"
services:
cloudflared:
image: cloudflare/cloudflared:latest
network_mode: "service:gluetun"
command: tunnel --no-autoupdate --url http://localhost:3000
#webtop
webtop:
image: lscr.io/linuxserver/firefox:latest
network_mode: "service:gluetun"
environment:
- CUSTOM_USER=change_this
- PASSWORD=change_this
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
shm_size: "2gb"
#vpn
gluetun:
image: qmcgaw/gluetun
network_mode: bridge
devices:
- /dev/net/tun:/dev/net/tun
cap_add:
- NET_ADMIN
environment:
- VPN_SERVICE_PROVIDER=protonvpn
- OPENVPN_USER=change_this
- OPENVPN_PASSWORD=change_this
- FREE_ONLY=on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment