diff --git a/starr/docker-compose.yaml b/starr/docker-compose.yaml deleted file mode 100644 index 5233b69..0000000 --- a/starr/docker-compose.yaml +++ /dev/null @@ -1,18 +0,0 @@ -## starr Stack -version:"3" - -services: - whisparr: - container_name: whisparr - image: ghcr.io/hotio/whisparr:v3 - ports: - - "6969:6969" - environment: - - PUID=2016 - - PGID=4100 - - UMASK=002 - - TZ=America/Los_Angeles - volumes: - - /mnt/arrs/whisparr:/config - - /data/torrents:/data/torrents - - /data/media/other:/data/media/other diff --git a/starr/starr-stack-ext.yaml b/starr/starr-stack-ext.yaml new file mode 100644 index 0000000..b22f806 --- /dev/null +++ b/starr/starr-stack-ext.yaml @@ -0,0 +1,66 @@ +#Starr Stack Extension +services: + whisparr: + container_name: whisparr + image: ghcr.io/hotio/whisparr:v3 + restart: unless-stopped + ports: + - target: 6969 + published: 6969 + protocol: tcp + mode: host + environment: + - PUID=2016 + - PGID=4100 + - UMASK=002 + - TZ=America/Los_Angeles + volumes: + - /mnt/arrs/whisparr:/config + - /data/torrents:/data/torrents + - /data/media/other:/data/media/other + + delugevpn1: + sysctls: + - net.ipv4.conf.all.src_valid_mark=1 + privileged: true + image: binhex/arch-delugevpn + container_name: delugevpn1 + restart: unless-stopped + ports: + - target: 8112 + published: 8112 + protocol: tcp + mode: host + - 8118:8118 + - 9118:9118 + - 58846:58846 + - 58946:58946 + - 58946:58946/udp + volumes: + - /data/torrents:/data/torrents + - /mnt/docker/delugevpn1:/config + - /etc/localtime:/etc/localtime:ro + environment: + - VPN_ENABLED=yes + - VPN_USER=Jacklowgun + - VPN_PASS=e2pDNk7tEF + - VPN_PROV=custom + - VPN_CLIENT=wireguard + - ENABLE_STARTUP_SCRIPTS=no + - ENABLE_PRIVOXY=yes + - STRICT_PORT_FORWARD=yes + - USERSPACE_WIREGUARD=yes + - ENABLE_SOCKS=yes + - SOCKS_USER=admin + - SOCKS_PASS=socks + - LAN_NETWORK=192.168.1.0/24 + - NAME_SERVERS=1.1.1.1,1.0.0.1 + - DELUGE_DAEMON_LOG_LEVEL=info + - DELUGE_WEB_LOG_LEVEL=info + - DELUGE_ENABLE_WEBUI_PASSWORD=yes + - VPN_INPUT_PORTS=9123 + - VPN_OUTPUT_PORTS=9456 + - DEBUG=false + - UMASK=002 + - PUID=2017 + - PGID=4100