Advertisement
shiftylilbastrd

Untitled

Dec 11th, 2019
14,349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.70 KB | None | 0 0
  1. version: "3.3"
  2. services:
  3.     watchtower:
  4.         image: v2tec/watchtower:latest
  5.         container_name: watchtower
  6.         volumes:
  7.            - /var/run/docker.sock:/var/run/docker.sock
  8.         command:
  9.             --schedule "0 1 * * * *"
  10.             --cleanup
  11.     portainer:
  12.         image: portainer/portainer:latest
  13.         container_name: portainer
  14.         restart: always
  15.         environment:
  16.            - TZ=${TZ}
  17.         ports:
  18.            - 9000:9000
  19.         command:
  20.            -H unix:///var/run/docker.sock
  21.         volumes:
  22.            - /var/run/docker.sock:/var/run/docker.sock
  23.             - ${cont_dir}/portainer:/data
  24.     ddclient:
  25.         image: linuxserver/ddclient:latest
  26.         container_name: ddclient
  27.         environment:
  28.            - PUID=${PUID}
  29.             - PGID=${PGID}
  30.             - TZ=${TZ}
  31.         volumes:
  32.            - ${cont_dir}/ddclient/config:/config
  33.         restart: unless-stopped
  34.     vpn:
  35.         image: bubuntux/nordvpn:latest
  36.         container_name: nordvpn
  37.         cap_add:
  38.            - net_admin
  39.         devices:
  40.            - /dev/net/tun
  41.         restart: always
  42.         environment:
  43.            - USER=${nord_user}
  44.             - PASS=${nord_pass}
  45.             - COUNTRY=United_States
  46.             - PROTOCOL=UDP
  47.             - CATEGORY=P2P
  48.             - NETWORK=192.168.1.0/24,10.0.75.0/24
  49.             - OPENVPN_OPTS=--pull-filter ignore "ping-restart" --ping-exit 180
  50.             - TZ=${TZ}
  51.         ports:
  52.            - 6881:6881
  53.             - 8113:8113
  54.             - 8112:8112
  55.             - 58846:58846
  56.     deluge:
  57.         image: linuxserver/deluge:latest
  58.         container_name: deluge
  59.         network_mode: service:vpn
  60.         environment:
  61.            - PUID=${PUID}
  62.             - PGID=${PGID}
  63.             - TZ=${TZ}
  64.             - UMASK_SET=000 #optional
  65.             - DELUGE_LOGLEVEL=error #optional
  66.         volumes:
  67.            - ${cont_dir}/deluge/config:/config
  68.             - ${download_dir}:/downloads
  69.         restart: always
  70.         #depends_on:
  71.             #- vpn
  72.     qbittorrent:
  73.         image: linuxserver/qbittorrent:latest
  74.         container_name: qbit
  75.         network_mode: service:vpn
  76.         environment:
  77.            - PUID=${PUID}
  78.             - PGID=${PGID}
  79.             - TZ=${TZ}
  80.             - UMASK_SET=000
  81.             - WEBUI_PORT=8113
  82.             - VERSION=latest
  83.         volumes:
  84.            - ${cont_dir}/qbittorrent/config:/config
  85.             - ${download_dir}:/downloads
  86.         restart: always
  87.         #depends_on:
  88.             #- vpn
  89.     organizr-v2:
  90.         image: organizrtools/organizr-v2:dev-latest
  91.         container_name: organizr-v2
  92.         hostname: organizr-v2
  93.         restart: unless-stopped
  94.         volumes:
  95.            - ${cont_dir}/organizr-v2:/config
  96.         ports:
  97.            - 9002:80
  98.         environment:
  99.            - PUID=${PUID}
  100.             - PGID=${PGID}
  101.             - TZ=${TZ}
  102.     plex:
  103.         image: linuxserver/plex:latest
  104.         container_name: plex
  105.         restart: unless-stopped
  106.         hostname: Shiflix
  107.         network_mode: host
  108.         volumes:
  109.            - ${cont_dir}/plex:/config
  110.             - ${media_dir}:/media
  111.         environment:
  112.            - TZ=${TZ}
  113.             - PUID=${PUID}
  114.             - PGID=${PGID}
  115.             - VERSION=latest
  116.     ombi:
  117.         image: linuxserver/ombi:latest
  118.         container_name: ombi
  119.         hostname: ombi
  120.         restart: unless-stopped
  121.         volumes:
  122.            - ${cont_dir}/ombi:/config
  123.         ports:
  124.            - 5000:3579
  125.         environment:
  126.            - PUID=${PUID}
  127.             - PGID=${PGID}
  128.             - TZ=${TZ}
  129.             - VERSION=latest
  130.     tautulli:
  131.         image: linuxserver/tautulli:latest
  132.         container_name: tautulli
  133.         hostname: tautulli
  134.         restart: unless-stopped
  135.         volumes:
  136.            - ${cont_dir}/tautulli:/config
  137.         ports:
  138.            - 8181:8181
  139.         environment:
  140.            - PUID=${PUID}
  141.             - PGID=${PGID}
  142.             - TZ=${TZ}
  143.             - VERSION=latest
  144.     radarr:
  145.         image: linuxserver/radarr:latest
  146.         container_name: radarr
  147.         hostname: radarr
  148.         restart: unless-stopped
  149.         volumes:
  150.            - ${cont_dir}/radarr:/config
  151.             - ${download_dir}:/downloads
  152.             - ${media_dir}:/media
  153.         ports:
  154.            - 7878:7878
  155.         environment:
  156.            - PUID=${PUID}
  157.             - PGID=${PGID}
  158.             - TZ=${TZ}
  159.             - VERSION=latest
  160.     sonarr:
  161.         image: linuxserver/sonarr:latest
  162.         container_name: sonarr
  163.         hostname: sonarr
  164.         restart: unless-stopped
  165.         volumes:
  166.            - ${cont_dir}/sonarr:/config
  167.             - ${download_dir}:/downloads
  168.             - ${media_dir}:/media
  169.         ports:
  170.            - 8989:8989
  171.         environment:
  172.            - PUID=${PUID}
  173.             - PGID=${PGID}
  174.             - TZ=${TZ}
  175.             - VERSION=latest
  176.     jackett:
  177.         image: linuxserver/jackett:latest
  178.         container_name: jackett
  179.         hostname: jackett
  180.         restart: unless-stopped
  181.         volumes:
  182.            - ${cont_dir}/jackett:/config
  183.             - ${download_dir}:/downloads
  184.         ports:
  185.            - 9117:9117
  186.         environment:
  187.            - PUID=${PUID}
  188.             - PGID=${PGID}
  189.             - TZ=${TZ}
  190.             - VERSION=latest
  191.     lazylibrarian:
  192.         image: linuxserver/lazylibrarian:latest
  193.         container_name: lazylibrarian
  194.         hostname: lazylibrarian
  195.         restart: unless-stopped
  196.         volumes:
  197.            - ${cont_dir}/lazylibrarian:/config
  198.             - ${download_dir}:/downloads
  199.             - ${media_dir}:/books
  200.         ports:
  201.            - 5299:5299
  202.         environment:
  203.            - PUID=${PUID}
  204.             - PGID=${PGID}
  205.             - TZ=${TZ}
  206.             - DOCKER_MODS=linuxserver/calibre-web:calibre #optional
  207.             - VERSION=latest
  208.     calibre-web:
  209.         image: linuxserver/calibre-web:latest
  210.         container_name: calibre-web
  211.         environment:
  212.            - PUID=${PUID}
  213.             - PGID=${PGID}
  214.             - TZ=${TZ}
  215.             - DOCKER_MODS=linuxserver/calibre-web:calibre
  216.         volumes:
  217.            - ${cont_dir}/calibre-web:/config
  218.             - ${media_dir}/books:/books
  219.         ports:
  220.            - 8083:8083
  221.         restart: unless-stopped
  222.     nginx:
  223.         image: linuxserver/nginx:latest
  224.         container_name: nginx
  225.         hostname: nginx
  226.         restart: unless-stopped
  227.         volumes:
  228.            - ${cont_dir}/nginx:/config
  229.         ports:
  230.            - 80:80
  231.             - 443:443
  232.         environment:
  233.            - PUID=${PUID}
  234.             - PGID=${PGID}
  235.             - TZ=${TZ}
  236.             - VERSION=latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement