From 258d380f6436ca2798eaf698917a792c2e7c6480 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 3 Sep 2023 18:01:59 +0000 Subject: [PATCH] Update 'root/usr/libexec/apps/neko/neko.sh' --- root/usr/libexec/apps/neko/neko.sh | 88 +++++++++++++++--------------- 1 file changed, 45 insertions(+), 43 deletions(-) diff --git a/root/usr/libexec/apps/neko/neko.sh b/root/usr/libexec/apps/neko/neko.sh index 6068304..0094ae4 100644 --- a/root/usr/libexec/apps/neko/neko.sh +++ b/root/usr/libexec/apps/neko/neko.sh @@ -4,40 +4,33 @@ ACTION=${1} shift 1 get_image() { - IMAGE_NAME="m1k1o/neko:firefox" + IMAGE_NAME=$(uci get neko.@neko[0].image_name 2>/dev/null) } do_install_detail() { - local config=`uci get neko.@neko[0].config_path 2>/dev/null` - local port=`uci get neko.@neko[0].port 2>/dev/null` - local IMAGE_NAME=`uci get neko.@neko[0].image_name 2>/dev/null` - local username=`uci get neko.@neko[0].username 2>/dev/null` - local password=`uci get neko.@neko[0].password 2>/dev/null` - - #Generate the generic environment variables for the docker-compose - + local config=$(uci get neko.@neko[0].config_path 2>/dev/null) + local port=$(uci get neko.@neko[0].port 2>/dev/null) + local IMAGE_NAME=$(uci get neko.@neko[0].image_name 2>/dev/null) + GEN_PASS=$(< /dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c14; echo) GEN_PASS2=$(< /dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c14; echo) - # Get our local LAN IP Address LAN_IP=$(uci get network.lan.ipaddr) - # Strip trailing network mask LAN_IP="${LAN_IP%/*}" - + if [ -z "$config" ]; then - echo "config path is empty!" - exit 1 + echo "config path is empty!" + exit 1 fi [ -z "$port" ] && port=8281 - [ -z "$IMAGE_NAME" ] && IMAGE_NAME=m1k1o/neko:firefox + [ -z "$IMAGE_NAME" ] && IMAGE_NAME="m1k1o/neko:firefox" - - # Create Docker Compose file with custom variables - - # Create Docker Compose file with custom variables -touch docker-compose.yml -cat > docker-compose.yml < /opt/docker2/compose/neko-app/docker-compose.yml <