Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3.9'
- services:
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- ports:
- - 8888:8888/tcp # HTTP proxy
- - 8388:8388/tcp # Shadowsocks
- - 8388:8388/udp # Shadowsocks
- - 3661:3000
- volumes:
- - /home/homr/docker/gluetun:/gluetun
- environment:
- - VPN_SERVICE_PROVIDER="private internet access"
- - OPENVPN_USER=p5327943
- - OPENVPN_PASSWORD=SuperKodas2023!
- - SERVER_REGIONS=France
- - TZ=Europe/London
- - UPDATER_PERIOD=5m
- restart: unless-stopped
- networks:
- - gluetun_network
- webtop:
- image: lscr.io/linuxserver/webtop:ubuntu-mate
- container_name: webtop
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=Europe/London
- volumes:
- - /home/mrp/docker/webtop:/config
- shm_size: "1gb"
- restart: unless-stopped
- network_mode: "service:gluetun" # Forces Webtop to use Gluetun's network
- networks:
- gluetun_network:
- driver: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement