Guest User

webtop_gluetun_compose.yml

a guest
Jan 14th, 2025
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.82 KB | Source Code | 0 0
  1. services:
  2.   gluetun:
  3.     image: qmcgaw/gluetun:v3.40.0
  4.     cap_add:
  5.      - NET_ADMIN
  6.     env_file:
  7.      - ./gluetun.env
  8.     ports:
  9.      - 127.0.0.1:33001:3001/tcp # webtop(https)
  10.     volumes:
  11.      - ./config_glueten:/gluetun
  12.     devices:
  13.      - /dev/net/tun:/dev/net/tun
  14.     restart: unless-stopped
  15.  
  16.   webtop:
  17.     image: ghcr.io/linuxserver/webtop:version-fccb91ce
  18.     security_opt:
  19.      - seccomp:unconfined
  20.     environment:
  21.      - PUID=${WEBTOP_PUID:-1000}
  22.       - PGID=${WEBTOP_PGID:-1000}
  23.       - TZ=${WEBTOP_TZ:-Etc/UTC}
  24.       - CUSTOM_USER=${WEBTOP_CUSTOM_USER:-abc}
  25.       - PASSWORD=${WEBTOP_PASSWORD:?Please create .env}
  26.     volumes:
  27.      - home:/config
  28.     shm_size: 4gb
  29.     restart: unless-stopped
  30.     network_mode: service:gluetun
  31.     depends_on:
  32.      - gluetun
  33.  
  34. volumes:
  35.   home:
Advertisement
Add Comment
Please, Sign In to add comment