Advertisement
Guest User

Untitled

a guest
Mar 5th, 2025
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.55 KB | None | 0 0
  1. services:
  2.   gluetun:
  3.     image: ghcr.io/qdm12/gluetun:latest
  4.     container_name: gluetun
  5.     cap_add:
  6.      - NET_ADMIN
  7.     devices:
  8.      - /dev/net/tun:/dev/net/tun
  9.     ports:
  10.      - 8000:8000/tcp
  11.       - 30000:3000 # Firefox http
  12.       - 30010:3001 # Firefox https
  13.     environment:
  14.      - VPN_SERVICE_PROVIDER=custom
  15.       - VPN_TYPE=wireguard
  16.       - VPN_PORT_FORWARDING=on
  17.       - VPN_PORT_FORWARDING_PROVIDER=protonvpn
  18.     volumes:
  19.      - /gluetun:/gluetun
  20.       - /config.toml:/gluetun/auth/config.toml:ro
  21.     restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement