psionicsin

Untitled

Oct 12th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.48 KB | None | 0 0
  1. version: "3.7"
  2. services:
  3.  
  4.   dozzle:
  5.     container_name: dozzle
  6.     image: amir20/dozzle:latest
  7.     volumes:
  8.       - /var/run/docker.sock:/var/run/docker.sock
  9.     ports:
  10.       - 9999:8080
  11.     network_mode: synobridge
  12.     restart: unless-stopped
  13.    
  14.   gluetun:
  15.     image: qmcgaw/gluetun:latest
  16.     container_name: gluetun
  17.     cap_add:
  18.       - NET_ADMIN
  19.     devices:
  20.       - /dev/net/tun:/dev/net/tun
  21.     ports:
  22.       - 8888:8888/tcp # HTTP proxy
  23.       - 8388:8388/tcp # Shadowsocks
  24.       - 8388:8388/udp # Shadowsocks
  25.       - 8090:8090 # port for qbittorrent
  26.     volumes:
  27.       - /volume1/docker/appdata/gluetun:/gluetun
  28.     environment:
  29.       - PUID=1024
  30.       - PGID=100
  31.       - TZ=America/Los_Angeles
  32.       - VPN_SERVICE_PROVIDER=custom
  33.       - VPN_TYPE=wireguard
  34.       - VPN_ENDPOINT_IP=107.181.189.36
  35.       - VPN_ENDPOINT_PORT=1443
  36.       - WIREGUARD_PUBLIC_KEY=key
  37.       - WIREGUARD_PRIVATE_KEY=key
  38.       - WIREGUARD_PRESHARED_KEY=key
  39.       - WIREGUARD_ADDRESSES=10.13.128.129/24
  40.       - HTTPPROXY=off #change to on if you wish to enable
  41.       - SHADOWSOCKS=off #change to on if you wish to enable
  42.       - FIREWALL_OUTBOUND_SUBNETS=172.20.0.0/16,10.0.1.0/24 #change this in line with your subnet see note on guide.
  43.       - UPDATER_PERIOD=24h
  44.     network_mode: synobridge
  45.     labels:
  46.       - com.centurylinklabs.watchtower.enable=false
  47.     restart: unless-stopped
  48.  
  49.   qbittorrent:
  50.     image: lscr.io/linuxserver/qbittorrent:latest
  51.     container_name: qbittorrent
  52.     environment:
  53.       - PUID=1024
  54.       - PGID=100
  55.       - TZ=America/Los_Angeles
  56.     #  - UMASK=022
  57.       - WEBUI_PORT=8090
  58.     volumes:
  59.     #  - /etc/localtime:/etc/localtime:ro
  60.       - /volume1/docker/appdata/qbittorrent:/config:rw
  61.       - /volume1/data/torrents:/data/torrents:rw
  62.     network_mode: service:gluetun # run on the vpn network
  63.     depends_on:
  64.       gluetun:
  65.         condition: service_healthy
  66.     restart: unless-stopped
  67.    
  68.   nzbget:
  69.     image: lscr.io/linuxserver/nzbget:latest
  70.     container_name: nzbget
  71.     environment:
  72.       - PUID=1024
  73.       - PGID=100
  74.       - TZ=America/Los_Angeles
  75.       - UMASK=022
  76.       - NZBGET_USER=nzbget #optional
  77.       - NZBGET_PASS=tegbzn6789 #optional
  78.     volumes:
  79.       - /etc/localtime:/etc/localtime:ro
  80.       - /volume1/docker/appdata/nzbget:/config:rw
  81.       - /volume1/data/usenet:/data/usenet:rw #optional
  82.     network_mode: synobridge
  83.     ports:
  84.       - 6789:6789
  85.     restart: unless-stopped
  86.  
  87.   radarr:
  88.     image: lscr.io/linuxserver/radarr:latest
  89.     container_name: radarr
  90.     # logging:
  91.     #   driver: json-file
  92.     #   options:
  93.     #     max-file: 10m
  94.     #     max-size: 200k
  95.     environment:
  96.       - PUID=1024
  97.       - PGID=100
  98.       - TZ=America/Los_Angeles
  99.       - UMASK=022
  100.     volumes:
  101.       - /etc/localtime:/etc/localtime:ro
  102.       - /volume1/docker/appdata/radarr:/config:rw
  103.       - /volume1/data:/data:rw
  104.     network_mode: synobridge
  105.     ports:
  106.       - 7878:7878
  107.     restart: unless-stopped
  108.  
  109.   sonarr:
  110.     container_name: sonarr
  111.     image: lscr.io/linuxserver/sonarr:latest
  112.     # logging:
  113.     #   driver: json-file
  114.     #   options:
  115.     #     max-file: 10m
  116.     #     max-size: 200k
  117.     ports:
  118.       - 8989:8989
  119.     environment:
  120.       - PUID=1024
  121.       - PGID=100
  122.       - TZ=America/Los_Angeles
  123.       - UMASK=022
  124.     volumes:
  125.       - /etc/localtime:/etc/localtime:ro
  126.       - /volume1/docker/appdata/sonarr:/config:rw
  127.       - /volume1/data:/data:rw
  128.     network_mode: synobridge
  129.     restart: unless-stopped
Add Comment
Please, Sign In to add comment