Guest User

Untitled

a guest
Oct 12th, 2022
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. version: '3.5'
  2. services:
  3. firefox:
  4. container_name: firefox
  5. image: lscr.io/linuxserver/firefox:latest
  6. environment:
  7. - PUID=1000
  8. - PGID=1000
  9. - TZ=America/Chicago
  10. volumes:
  11. - /mnt/user/appdata/firefox/config:/config
  12. - /mnt/user/Unraid-Media/Downloads:/config/Downloads
  13. depends_on:
  14. - qbittorrentvpn
  15. network_mode: container:qbittorrentvpn
  16. restart: unless-stopped
  17. shm_size: 1gb
  18. qbittorrentvpn:
  19. container_name: qbittorrentvpn
  20. image: binhex/arch-qbittorrentvpn
  21. environment:
  22. - VPN_ENABLED=yes
  23. - VPN_USER=${VPN_USER}
  24. - VPN_PASS=${VPN_PASS}
  25. - VPN_PROV=pia
  26. - VPN_CLIENT=openvpn
  27. - STRICT_PORT_FORWARD=yes
  28. - ENABLE_PRIVOXY=yes
  29. - LAN_NETWORK=192.168.1.0/24
  30. - NAME_SERVERS=10.0.0.242,84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1
  31. - VPN_INPUT_PORTS=1234
  32. - VPN_OUTPUT_PORTS=5678
  33. - DEBUG=false
  34. - WEBUI_PORT=8080
  35. - UMASK=000
  36. - PUID=1000
  37. - PGID=1000
  38. - TZ=America/Chicago
  39. volumes:
  40. - /mnt/user/Unraid-Media/:/data
  41. - /mnt/user/appdata/qbittorrentvpn/config:/config
  42. ports:
  43. - '3000:3000'
  44. - '6881:6881'
  45. - 6881:6881/udp
  46. - '8080:8080'
  47. - '8118:8118'
  48. cap_add:
  49. - NET_ADMIN
  50. restart: unless-stopped
  51.  
Add Comment
Please, Sign In to add comment