Created
May 8, 2023 00:17
-
-
Save BoredHackerBlog/d23d0de7225ca0bc8c552571d1cb6f7b to your computer and use it in GitHub Desktop.
research webtop w/ vpn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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