diff --git a/scripts/docker/muximux.yml b/scripts/docker/muximux.yml index 573dd71287..150599ff7a 100644 --- a/scripts/docker/muximux.yml +++ b/scripts/docker/muximux.yml @@ -4,8 +4,6 @@ services: muximux: image: linuxserver/muximux container_name: muximux -# If you want your ip or domain to load this directly, change the 8015 to 80 (80:80). -# If you plan on creating a web-interface; leave as 8015; port 80 is reserved for your website ports: - 8015:80 volumes: diff --git a/scripts/docker/transmission.yml b/scripts/docker/transmission.yml deleted file mode 100644 index 95d808a95e..0000000000 --- a/scripts/docker/transmission.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -version: '2' -services: - transmission: - image: linuxserver/transmission - container_name: transmission - ports: - - "9091:9091" - - "51413:51413/udp" - volumes: - - /opt/appdata/transmission/config:/config - - /mnt/transmission/downloads:/downloads - - /mnt/transmission/watch:/watch - - /:/yourcomputer - environment: - - PUID=0 - - PGID=0 - restart: - always \ No newline at end of file diff --git a/scripts/menus/programs-beta.sh b/scripts/menus/programs-beta.sh index 3cc7bad17b..fe004463a3 100644 --- a/scripts/menus/programs-beta.sh +++ b/scripts/menus/programs-beta.sh @@ -33,14 +33,8 @@ cat << EOF PlexGuide.com BETA Installer ~ BETA ~ BETA ~ BETA ~ BETA ~ BETA Warning: NO SUPPORT! QUESTIONS WILL BE IGNORED! -1. Headphones | ** TESTING -2. Hydra | ** TESTING -3. RuTorrent | ** TESTING -4 Transmission | ** TESTING -5. DelugeVPN | ** TESTING -6. Jackett | ** TESTING -7. LetsEncrypt | ** TESTING -8. TestPlex | ** TESTING +1. DelugeVPN | ** TESTING +2. TestPlex | ** TESTING EOF } @@ -50,53 +44,18 @@ EOF # Exit when user the user select 3 form the menu option. read_options(){ local choice - read -p "Enter choice [ 1 - 9 ]; Type [9] to Exit! " choice + read -p "Enter choice [ 1 - 3 ]; Type [3] to Exit! " choice case $choice in 1) - echo ymlprogram headphones > /opt/plexguide/tmp.txt - echo ymldisplay Headphones >> /opt/plexguide/tmp.txt - echo ymlport 8150 >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 2) - echo ymlprogram hydra > /opt/plexguide/tmp.txt - echo ymldisplay Hydra >> /opt/plexguide/tmp.txt - echo ymlport 5075 >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 3) - echo ymlprogram rutorrent > /opt/plexguide/tmp.txt - echo ymldisplay RuTorrent >> /opt/plexguide/tmp.txt - echo ymlport 8085 >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 4) - echo ymlprogram transmission > /opt/plexguide/tmp.txt - echo ymldisplay Transmission >> /opt/plexguide/tmp.txt - echo ymlport 9091 >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 5) clear bash /opt/plexguide/scripts/menus/delugevpn-menu.sh ;; - 6) - echo ymlprogram jackett > /opt/plexguide/tmp.txt - echo ymldisplay Jackett >> /opt/plexguide/tmp.txt - echo ymlport 9117 >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 7) - echo ymlprogram letsencrypt > /opt/plexguide/tmp.txt - echo ymldisplay Lets Encrypt >> /opt/plexguide/tmp.txt - bash /opt/plexguide/scripts/docker-no/program-installer.sh - ;; - 8) + 2) clear bash /opt/plexguide/scripts/test/plex-menu.sh ;; - 9) + 3) exit 0;; *) echo -e "${RED}Error...${STD}" && sleep 2 esac diff --git a/scripts/test/letsencrypt/example-v3 b/scripts/test/letsencrypt/example-v3 deleted file mode 100644 index c8293539c2..0000000000 --- a/scripts/test/letsencrypt/example-v3 +++ /dev/null @@ -1,80 +0,0 @@ -version: "3" -services: - nginx-proxy: - image: nginx - container_name: nginx-proxy - ports: - - "80:80" - - "443:443" - volumes: - - nginx-conf:/etc/nginx/conf.d - - nginx-vhost:/etc/nginx/vhost.d - - nginx-html:/usr/share/nginx/html - - nginx-ssl:/etc/nginx/certs:ro - labels: - com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true" - networks: - - nginx-proxy - - nginx-gen: - image: jwilder/docker-gen - container_name: nginx-gen - command: -notify-sighup nginx-proxy -wait 5s:30s -watch /etc/docker-gen/templates/nginx.tmpl /etc/nginx/conf.d/default.conf - volumes: - - /var/run/docker.sock:/tmp/docker.sock:ro - - nginx-conf:/etc/nginx/conf.d - - nginx-vhost:/etc/nginx/vhost.d - - nginx-html:/usr/share/nginx/html - - ./nginx:/etc/docker-gen/templates:rw - - nginx-ssl:/etc/nginx/certs:ro - links: - - nginx-proxy - networks: - - nginx-proxy - - nginx-ssl: - image: jrcs/letsencrypt-nginx-proxy-companion - container_name: nginx-ssl - volumes: - - /var/run/docker.sock:/var/run/docker.sock:ro - - nginx-conf:/etc/nginx/conf.d - - nginx-vhost:/etc/nginx/vhost.d - - nginx-html:/usr/share/nginx/html - - ./nginx:/etc/docker-gen/templates:ro - - nginx-ssl:/etc/nginx/certs:rw - environment: - - ACME_CA_URI - - "NGINX_DOCKER_GEN_CONTAINER=nginx-gen" - links: - - nginx-proxy - - nginx-gen - networks: - - nginx-proxy - api: - restart: always - image: $IMAGE_NAME:$VERSION - restart: always - env_file: - - ./.env - - ./version.env - environment: - - API_PORT=7000 - - VIRTUAL_HOST= - - VIRTUAL_NETWORK=nginx-proxy - - VIRTUAL_PORT=7000 - - LETSENCRYPT_HOST= - - LETSENCRYPT_EMAIL= - networks: - - nginx-proxy - volumes: - - /var/run/docker.sock:/tmp/docker.sock:ro - -volumes: - nginx-conf: - nginx-vhost: - nginx-html: - nginx-ssl: - -networks: - nginx-proxy: - external: true