diff --git a/root/usr/libexec/apps/plugsy/plugsy.sh b/root/usr/libexec/apps/plugsy/plugsy.sh index 6fd67fe..cea3315 100644 --- a/root/usr/libexec/apps/plugsy/plugsy.sh +++ b/root/usr/libexec/apps/plugsy/plugsy.sh @@ -4,7 +4,7 @@ ACTION=${1} shift 1 get_image() { - IMAGE_NAME="plugsy/core" + IMAGE_NAME=$(uci get plugsy.@plugsy[0].image_name 2>/dev/null) } do_install_detail() { @@ -12,100 +12,88 @@ do_install_detail() { local port=`uci get plugsy.@plugsy[0].port 2>/dev/null` local IMAGE_NAME=`uci get plugsy.@plugsy[0].image_name 2>/dev/null` - #Generate the generic environment variables for the docker-compose - 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=3030 [ -z "$IMAGE_NAME" ] && IMAGE_NAME=plugsy/core - - # 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/plugsy-app/docker-compose.yml <