#!/bin/sh ACTION=${1} shift 1 get_image() { IMAGE_NAME=$(uci get alltube.@alltube[0].image_name 2>/dev/null) } do_install_detail() { local config=$(uci get alltube.@alltube[0].config_path 2>/dev/null) local port=$(uci get alltube.@alltube[0].port 2>/dev/null) local IMAGE_NAME=$(uci get alltube.@alltube[0].image_name 2>/dev/null) local username=$(uci get alltube.@alltube[0].username 2>/dev/null) local password=$(uci get alltube.@alltube[0].password 2>/dev/null) # Generate random passwords similar to Searxng script 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%/*}" [ -z "$config" ] && echo "config path is empty!" && exit 1 [ -z "$port" ] && port=5993 [ -z "$IMAGE_NAME" ] && IMAGE_NAME=rudloff/alltube # Create Docker Compose file with custom variables rm -R /opt/docker2/compose/alltube-app mkdir /opt/docker2/compose/alltube-app touch /opt/docker2/compose/alltube-app/docker-compose.yml cat > /opt/docker2/compose/alltube-app/docker-compose.yml <