diff --git a/docker-compose/1_Auto_Upstall/noco.sh b/docker-compose/1_Auto_Upstall/noco.sh index c8d79d654d..196df2e1df 100755 --- a/docker-compose/1_Auto_Upstall/noco.sh +++ b/docker-compose/1_Auto_Upstall/noco.sh @@ -46,504 +46,501 @@ print_warning() { print_color "$YELLOW" "WARNING: $1"; } print_error() { print_color "$RED" "ERROR: $1"; } print_box_message() { - local message=("$@") - local edge="======================================" - local padding=" " + local message=("$@") + local edge="======================================" + local padding=" " - echo "$edge" - for element in "${message[@]}"; do - echo "${padding}${element}" - done - echo "$edge" + echo "$edge" + for element in "${message[@]}"; do + echo "${padding}${element}" + done + echo "$edge" } print_note() { - local note_text="$1" - local note_color='\033[0;33m' # Yellow color - local bold='\033[1m' - local reset='\033[0m' + local note_text="$1" + local note_color='\033[0;33m' # Yellow color + local bold='\033[1m' + local reset='\033[0m' - echo -e "${note_color}${bold}NOTE:${reset} ${note_text}" + echo -e "${note_color}${bold}NOTE:${reset} ${note_text}" } command_exists() { command -v "$1" >/dev/null 2>&1; } is_valid_domain() { - local domain_regex="^([a-zA-Z0-9]([-a-zA-Z0-9]{0,61}[a-zA-Z0-9])?\.)*[a-zA-Z0-9]([-a-zA-Z0-9]{0,61}[a-zA-Z0-9])?\.[a-zA-Z]{2,}$" - [[ "$1" =~ $domain_regex ]] + local domain_regex="^([a-zA-Z0-9]([-a-zA-Z0-9]{0,61}[a-zA-Z0-9])?\.)*[a-zA-Z0-9]([-a-zA-Z0-9]{0,61}[a-zA-Z0-9])?\.[a-zA-Z]{2,}$" + [[ "$1" =~ $domain_regex ]] } urlencode() { - local string="$1" - local strlen=${#string} - local encoded="" - local pos c o - - for (( pos=0 ; pos/dev/null 2>&1; then - ip=$(dig +short myip.opendns.com @resolver1.opendns.com 2>/dev/null) - if [ -n "$ip" ]; then - echo "$ip" - return - fi - fi - - # Method 2: Using curl - if command -v curl >/dev/null 2>&1; then - ip=$(curl -s -4 https://ifconfig.co 2>/dev/null) - if [ -n "$ip" ]; then - echo "$ip" - return - fi - fi - - # Method 3: Using wget - if command -v wget >/dev/null 2>&1; then - ip=$(wget -qO- https://ifconfig.me 2>/dev/null) - if [ -n "$ip" ]; then - echo "$ip" - return - fi - fi - - # Method 4: Using host - if command -v host >/dev/null 2>&1; then - ip=$(host myip.opendns.com resolver1.opendns.com 2>/dev/null | grep "myip.opendns.com has" | awk '{print $4}') - if [ -n "$ip" ]; then - echo "$ip" - return - fi - fi - - # If all methods fail, return localhost - echo "localhost" + local ip + + if command -v dig >/dev/null 2>&1; then + ip=$(dig +short myip.opendns.com @resolver1.opendns.com 2>/dev/null) + if [ -n "$ip" ]; then + echo "$ip" + return + fi + fi + + # Method 2: Using curl + if command -v curl >/dev/null 2>&1; then + ip=$(curl -s -4 https://ifconfig.co 2>/dev/null) + if [ -n "$ip" ]; then + echo "$ip" + return + fi + fi + + # Method 3: Using wget + if command -v wget >/dev/null 2>&1; then + ip=$(wget -qO- https://ifconfig.me 2>/dev/null) + if [ -n "$ip" ]; then + echo "$ip" + return + fi + fi + + # Method 4: Using host + if command -v host >/dev/null 2>&1; then + ip=$(host myip.opendns.com resolver1.opendns.com 2>/dev/null | grep "myip.opendns.com has" | awk '{print $4}') + if [ -n "$ip" ]; then + echo "$ip" + return + fi + fi + + # If all methods fail, return localhost + echo "localhost" } get_nproc() { - # Try to get the number of processors using nproc - if command -v nproc &> /dev/null; then - nproc - else - # Fallback: Check if /proc/cpuinfo exists and count the number of processors - if [[ -f /proc/cpuinfo ]]; then - grep -c ^processor /proc/cpuinfo - # Fallback for macOS or BSD systems using sysctl - elif command -v sysctl &> /dev/null; then - sysctl -n hw.ncpu - # Default to 1 processor if everything else fails - else - echo 1 - fi - fi + # Try to get the number of processors using nproc + if command -v nproc &>/dev/null; then + nproc + else + # Fallback: Check if /proc/cpuinfo exists and count the number of processors + if [[ -f /proc/cpuinfo ]]; then + grep -c ^processor /proc/cpuinfo + # Fallback for macOS or BSD systems using sysctl + elif command -v sysctl &>/dev/null; then + sysctl -n hw.ncpu + # Default to 1 processor if everything else fails + else + echo 1 + fi + fi } - prompt() { - local prompt_text="$1" - local default_value="$2" - local response + local prompt_text="$1" + local default_value="$2" + local response - if [ -n "$default_value" ]; then - prompt_text+=" (default: $default_value)" - fi - prompt_text+=": " + if [ -n "$default_value" ]; then + prompt_text+=" (default: $default_value)" + fi + prompt_text+=": " - read -r -p "$prompt_text" response - if [ -z "$response" ] && [ -n "$default_value" ]; then - echo "$default_value" - else - echo "$response" - fi + read -r -p "$prompt_text" response + if [ -z "$response" ] && [ -n "$default_value" ]; then + echo "$default_value" + else + echo "$response" + fi } prompt_oneof() { - local response - local resp_upper - local oneof_text - local prompt_text="$1" - local default_response="$2" - shift 1 - - prompt_text+=" (default: $default_response) " - oneof_text+="[" - for one in "$@"; do - oneof_text+="$one," - done - oneof_text="${oneof_text%%,}]" - prompt_text+="${oneof_text}: " - - while true; do - read -r -p "$prompt_text" response - if [ -z "$response" ]; then - echo "$default_response" - return - fi - - for one in "$@"; do - resp_upper="${response^^}" - one_upper="${one^^}" - if [ "$resp_upper" = "$one_upper" ]; then - echo "$one" - return - fi - done - print_error "This field should be one of ${oneof_text}." - done + local response + local resp_upper + local oneof_text + local prompt_text="$1" + local default_response="$2" + shift 1 + + prompt_text+=" (default: $default_response) " + oneof_text+="[" + for one in "$@"; do + oneof_text+="$one," + done + oneof_text="${oneof_text%%,}]" + prompt_text+="${oneof_text}: " + + while true; do + read -r -p "$prompt_text" response + if [ -z "$response" ]; then + echo "$default_response" + return + fi + + for one in "$@"; do + resp_upper="${response^^}" + one_upper="${one^^}" + if [ "$resp_upper" = "$one_upper" ]; then + echo "$one" + return + fi + done + print_error "This field should be one of ${oneof_text}." + done } prompt_required() { - local prompt_text="$1" - local response + local prompt_text="$1" + local response - while true; do - read -r -p "$prompt_text: " response - if [ -n "$response" ]; then - echo "$response" - return - fi - print_error "This field is required." - done + while true; do + read -r -p "$prompt_text: " response + if [ -n "$response" ]; then + echo "$response" + return + fi + print_error "This field is required." + done } prompt_number() { - local prompt_text="$1" - local min="$2" - local max="$3" - local response + local prompt_text="$1" + local min="$2" + local max="$3" + local response - while true; do - read -r -p "$prompt_text ($min-$max): " response - if [[ "$response" =~ ^[0-9]+$ ]] && [ "$response" -ge "$min" ] && [ "$response" -le "$max" ]; then - echo "$response" - return - fi - print_error "Please enter a number between $min and $max." - done + while true; do + read -r -p "$prompt_text ($min-$max): " response + if [[ "$response" =~ ^[0-9]+$ ]] && [ "$response" -ge "$min" ] && [ "$response" -le "$max" ]; then + echo "$response" + return + fi + print_error "Please enter a number between $min and $max." + done } confirm() { - local prompt_text="$1" - local default_response="${2:-N}" - local secondary_response - local response - case "$default_response" in - "Y") secondary_response="N";; - "N") secondary_response="Y";; - esac - - response="$(prompt_oneof "$prompt_text" "$default_response" "$secondary_response")" - if [ "$response" = "Y" ]; then - return 0 - elif [ "$response" = "N" ]; then - return 1 - fi + local prompt_text="$1" + local default_response="${2:-N}" + local secondary_response + local response + case "$default_response" in + "Y") secondary_response="N" ;; + "N") secondary_response="Y" ;; + esac + + response="$(prompt_oneof "$prompt_text" "$default_response" "$secondary_response")" + if [ "$response" = "Y" ]; then + return 0 + elif [ "$response" = "N" ]; then + return 1 + fi } generate_contact_email() { - local domain="$1" - local email + local domain="$1" + local email - if [ -z "$domain" ] || [ "$domain" = "localhost" ] || [[ "$domain" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - email="contact@example.com" - else - domain="${domain#http://}" - domain="${domain#https://}" - domain="${domain%%/*}" - domain="${domain%%\?*}" + if [ -z "$domain" ] || [ "$domain" = "localhost" ] || [[ "$domain" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + email="contact@example.com" + else + domain="${domain#http://}" + domain="${domain#https://}" + domain="${domain%%/*}" + domain="${domain%%\?*}" - if [[ "$domain" =~ [^.]+\.[^.]+$ ]]; then - main_domain="${BASH_REMATCH[0]}" - else - main_domain="$domain" - fi + if [[ "$domain" =~ [^.]+\.[^.]+$ ]]; then + main_domain="${BASH_REMATCH[0]}" + else + main_domain="$domain" + fi - email="contact@$main_domain" - fi + email="contact@$main_domain" + fi - echo "$email" + echo "$email" } install_package() { - if command_exists yum; then - sudo yum install -y "$1" - elif command_exists apt; then - sudo apt install -y "$1" - elif command_exists brew; then - brew install "$1" - else - print_error "Package manager not found. Please install $1 manually." - exit 1 - fi + if command_exists yum; then + sudo yum install -y "$1" + elif command_exists apt; then + sudo apt install -y "$1" + elif command_exists brew; then + brew install "$1" + else + print_error "Package manager not found. Please install $1 manually." + exit 1 + fi } add_to_hosts() { - local IP="127.0.0.1" - local HOSTS_FILE="/etc/hosts" - local TEMP_HOSTS_FILE="/tmp/hosts.tmp" - - - if is_valid_domain $CONFIG_MINIO_DOMAIN_NAME; then - return 0 - elif sudo grep -q "${CONFIG_MINIO_DOMAIN_NAME}" "$HOSTS_FILE"; then - return 0 - else - sudo cp "$HOSTS_FILE" "$TEMP_HOSTS_FILE" - echo "$IP ${CONFIG_MINIO_DOMAIN_NAME}" | sudo tee -a "$TEMP_HOSTS_FILE" > /dev/null - if sudo mv "$TEMP_HOSTS_FILE" "$HOSTS_FILE"; then - print_info "Added ${CONFIG_MINIO_DOMAIN_NAME} to $HOSTS_FILE" - print_note "You may need to reboot your system, If the uploaded attachments are not accessible." - - else - print_error "Failed to update $HOSTS_FILE. Please check your permissions." - return 1 - fi - fi + local IP="127.0.0.1" + local HOSTS_FILE="/etc/hosts" + local TEMP_HOSTS_FILE="/tmp/hosts.tmp" + + if is_valid_domain $CONFIG_MINIO_DOMAIN_NAME; then + return 0 + elif sudo grep -q "${CONFIG_MINIO_DOMAIN_NAME}" "$HOSTS_FILE"; then + return 0 + else + sudo cp "$HOSTS_FILE" "$TEMP_HOSTS_FILE" + echo "$IP ${CONFIG_MINIO_DOMAIN_NAME}" | sudo tee -a "$TEMP_HOSTS_FILE" >/dev/null + if sudo mv "$TEMP_HOSTS_FILE" "$HOSTS_FILE"; then + print_info "Added ${CONFIG_MINIO_DOMAIN_NAME} to $HOSTS_FILE" + print_note "You may need to reboot your system, If the uploaded attachments are not accessible." + + else + print_error "Failed to update $HOSTS_FILE. Please check your permissions." + return 1 + fi + fi } check_for_docker_sudo() { - if docker ps >/dev/null 2>&1; then - echo "n" - else - echo "y" - fi + if docker ps >/dev/null 2>&1; then + echo "n" + else + echo "y" + fi } read_number() { - local prompt="$1" - local default="$2" - local number - - while true; do - if [ -n "$default" ]; then - read -rp "$prompt [$default]: " number - number=${number:-$default} - else - read -rp "$prompt: " number - fi - - if [ -z "$number" ]; then - echo "Input cannot be empty. Please enter a number." - elif ! [[ $number =~ ^[0-9]+$ ]]; then - echo "Invalid input. Please enter a valid number." - else - echo "$number" - return - fi - done + local prompt="$1" + local default="$2" + local number + + while true; do + if [ -n "$default" ]; then + read -rp "$prompt [$default]: " number + number=${number:-$default} + else + read -rp "$prompt: " number + fi + + if [ -z "$number" ]; then + echo "Input cannot be empty. Please enter a number." + elif ! [[ $number =~ ^[0-9]+$ ]]; then + echo "Invalid input. Please enter a valid number." + else + echo "$number" + return + fi + done } read_number_range() { - local prompt="$1" - local min="$2" - local max="$3" - local default="$4" - local number - - while true; do - if [ -n "$default" ]; then - number=$(read_number "$prompt ($min-$max)" "$default") - else - number=$(read_number "$prompt ($min-$max)") - fi - - if [ -z "$number" ]; then - continue - elif [ "$number" -lt "$min" ] || [ "$number" -gt "$max" ]; then - echo "Please enter a number between $min and $max." - else - echo "$number" - return - fi - done + local prompt="$1" + local min="$2" + local max="$3" + local default="$4" + local number + + while true; do + if [ -n "$default" ]; then + number=$(read_number "$prompt ($min-$max)" "$default") + else + number=$(read_number "$prompt ($min-$max)") + fi + + if [ -z "$number" ]; then + continue + elif [ "$number" -lt "$min" ] || [ "$number" -gt "$max" ]; then + echo "Please enter a number between $min and $max." + else + echo "$number" + return + fi + done } check_if_docker_is_running() { - if ! $CONFIG_DOCKER_COMMAND ps >/dev/null 2>&1; then - print_warning "Docker is not running. Most of the commands will not work without Docker." - print_info "Use the following command to start Docker:" - print_color "$BLUE" " sudo systemctl start docker" - fi + if ! $CONFIG_DOCKER_COMMAND ps >/dev/null 2>&1; then + print_warning "Docker is not running. Most of the commands will not work without Docker." + print_info "Use the following command to start Docker:" + print_color "$BLUE" " sudo systemctl start docker" + fi } # Main functions check_existing_installation() { - NOCO_FOUND=false - - # Check if $NOCO_HOME exists as directory - if [ -d "$NOCO_HOME" ]; then - NOCO_FOUND=true - elif $CONFIG_DOCKER_COMMAND ps --format '{{.Names}}' | grep -q "nocodb"; then - NOCO_ID=$($CONFIG_DOCKER_COMMAND ps | grep "nocodb/nocodb" | cut -d ' ' -f 1) - CUSTOM_HOME=$($CONFIG_DOCKER_COMMAND inspect --format='{{index .Mounts 0}}' "$NOCO_ID" | cut -d ' ' -f 3) - PARENT_DIR=$(dirname "$CUSTOM_HOME") - - ln -s "$PARENT_DIR" "$NOCO_HOME" - basename "$PARENT_DIR" > "$NOCO_HOME/.COMPOSE_PROJECT_NAME" - - NOCO_FOUND=true - else - mkdir -p "$NOCO_HOME" - fi - - cd "$NOCO_HOME" || exit 1 - - # Check if nocodb is already installed - if [ "$NOCO_FOUND" = true ]; then - echo "NocoDB is already installed. And running." - echo "Do you want to reinstall NocoDB? [Y/N] (default: N): " - read -r REINSTALL - - if [ -f "$NOCO_HOME/.COMPOSE_PROJECT_NAME" ]; then - COMPOSE_PROJECT_NAME=$(cat "$NOCO_HOME/.COMPOSE_PROJECT_NAME") - export COMPOSE_PROJECT_NAME - fi - - if [ "$REINSTALL" != "Y" ] && [ "$REINSTALL" != "y" ]; then - management_menu - exit 0 - else - echo "Reinstalling NocoDB..." - $CONFIG_DOCKER_COMMAND compose down -v - - unset COMPOSE_PROJECT_NAME - cd /tmp || exit 1 - rm -rf "$NOCO_HOME" - - cd "$CURRENT_PATH" || exit 1 - mkdir -p "$NOCO_HOME" - cd "$NOCO_HOME" || exit 1 - fi - fi + NOCO_FOUND=false + + # Check if $NOCO_HOME exists as directory + if [ -d "$NOCO_HOME" ]; then + NOCO_FOUND=true + elif $CONFIG_DOCKER_COMMAND ps --format '{{.Names}}' | grep -q "nocodb"; then + NOCO_ID=$($CONFIG_DOCKER_COMMAND ps | grep "nocodb/nocodb" | cut -d ' ' -f 1) + CUSTOM_HOME=$($CONFIG_DOCKER_COMMAND inspect --format='{{index .Mounts 0}}' "$NOCO_ID" | cut -d ' ' -f 3) + PARENT_DIR=$(dirname "$CUSTOM_HOME") + + ln -s "$PARENT_DIR" "$NOCO_HOME" + basename "$PARENT_DIR" >"$NOCO_HOME/.COMPOSE_PROJECT_NAME" + + NOCO_FOUND=true + else + mkdir -p "$NOCO_HOME" + fi + + cd "$NOCO_HOME" || exit 1 + + # Check if nocodb is already installed + if [ "$NOCO_FOUND" = true ]; then + echo "NocoDB is already installed. And running." + echo "Do you want to reinstall NocoDB? [Y/N] (default: N): " + read -r REINSTALL + + if [ -f "$NOCO_HOME/.COMPOSE_PROJECT_NAME" ]; then + COMPOSE_PROJECT_NAME=$(cat "$NOCO_HOME/.COMPOSE_PROJECT_NAME") + export COMPOSE_PROJECT_NAME + fi + + if [ "$REINSTALL" != "Y" ] && [ "$REINSTALL" != "y" ]; then + management_menu + exit 0 + else + echo "Reinstalling NocoDB..." + $CONFIG_DOCKER_COMMAND compose down -v + + unset COMPOSE_PROJECT_NAME + cd /tmp || exit 1 + rm -rf "$NOCO_HOME" + + cd "$CURRENT_PATH" || exit 1 + mkdir -p "$NOCO_HOME" + cd "$NOCO_HOME" || exit 1 + fi + fi } check_system_requirements() { - print_info "Performing NocoDB system check and setup" - - for tool in docker wget lsof openssl; do - if ! command_exists "$tool"; then - print_warning "$tool is not installed. Setting up for installation..." - if [ "$tool" = "docker" ]; then - wget -qO- https://get.docker.com/ | sh - else - install_package "$tool" - fi - fi - done - - for port in "${REQUIRED_PORTS[@]}"; do - if lsof -Pi :"$port" -sTCP:LISTEN -t >/dev/null; then - print_warning "Port $port is in use. Please make sure it is free." - else - print_info "Port $port is free." - fi - done - - print_success "System check completed successfully" + print_info "Performing NocoDB system check and setup" + + for tool in docker wget lsof openssl; do + if ! command_exists "$tool"; then + print_warning "$tool is not installed. Setting up for installation..." + if [ "$tool" = "docker" ]; then + wget -qO- https://get.docker.com/ | sh + else + install_package "$tool" + fi + fi + done + + for port in "${REQUIRED_PORTS[@]}"; do + if lsof -Pi :"$port" -sTCP:LISTEN -t >/dev/null; then + print_warning "Port $port is in use. Please make sure it is free." + else + print_info "Port $port is free." + fi + done + + print_success "System check completed successfully" } get_user_inputs() { - CONFIG_DOMAIN_NAME=$(prompt "Enter the IP address or domain name for the NocoDB instance" "$(get_public_ip)") + CONFIG_DOMAIN_NAME=$(prompt "Enter the IP address or domain name for the NocoDB instance" "$(get_public_ip)") - if is_valid_domain "$CONFIG_DOMAIN_NAME"; then - CONFIG_SSL_ENABLED="$(prompt_oneof "Do you want to configure SSL for $CONFIG_DOMAIN_NAME" "Y" "N")" - else - CONFIG_SSL_ENABLED="N" - fi + if is_valid_domain "$CONFIG_DOMAIN_NAME"; then + CONFIG_SSL_ENABLED="$(prompt_oneof "Do you want to configure SSL for $CONFIG_DOMAIN_NAME" "Y" "N")" + else + CONFIG_SSL_ENABLED="N" + fi - if confirm "Show Advanced Options?"; then - get_advanced_options - else - set_default_options - fi + if confirm "Show Advanced Options?"; then + get_advanced_options + else + set_default_options + fi } get_advanced_options() { - CONFIG_EDITION=$(prompt_oneof "Choose Community or Enterprise Edition" "CE" "EE") + CONFIG_EDITION=$(prompt_oneof "Choose Community or Enterprise Edition" "CE" "EE") - if [ "$CONFIG_EDITION" = "EE" ]; then - CONFIG_LICENSE_KEY=$(prompt_required "Enter the NocoDB license key") - else - CONFIG_POSTGRES_SQLITE=$(prompt_oneof "Select PostgreSQL or SQLite as your database" "P" "S") - fi + if [ "$CONFIG_EDITION" = "EE" ]; then + CONFIG_LICENSE_KEY=$(prompt_required "Enter the NocoDB license key") + else + CONFIG_POSTGRES_SQLITE=$(prompt_oneof "Select PostgreSQL or SQLite as your database" "P" "S") + fi - CONFIG_REDIS_ENABLED=$(prompt_oneof "Do you want to enable Redis for caching?" "Y" "N") - CONFIG_MINIO_ENABLED=$(prompt_oneof "Do you want to enable Minio for file storage?" "Y" "N") + CONFIG_REDIS_ENABLED=$(prompt_oneof "Do you want to enable Redis for caching?" "Y" "N") + CONFIG_MINIO_ENABLED=$(prompt_oneof "Do you want to enable Minio for file storage?" "Y" "N") - if [ "$CONFIG_MINIO_ENABLED" = "Y" ]; then + if [ "$CONFIG_MINIO_ENABLED" = "Y" ]; then - CONFIG_MINIO_DOMAIN_NAME=$(prompt "Enter the MinIO domain name" "$(get_public_ip)") + CONFIG_MINIO_DOMAIN_NAME=$(prompt "Enter the MinIO domain name" "$(get_public_ip)") - if is_valid_domain "$CONFIG_MINIO_DOMAIN_NAME"; then - CONFIG_MINIO_SSL_ENABLED="$(prompt_oneof "Do you want to configure SSL for $CONFIG_MINIO_DOMAIN_NAME" "Y" "N")" - else - CONFIG_MINIO_SSL_ENABLED="N" - fi - fi + if is_valid_domain "$CONFIG_MINIO_DOMAIN_NAME"; then + CONFIG_MINIO_SSL_ENABLED="$(prompt_oneof "Do you want to configure SSL for $CONFIG_MINIO_DOMAIN_NAME" "Y" "N")" + else + CONFIG_MINIO_SSL_ENABLED="N" + fi + fi - CONFIG_WATCHTOWER_ENABLED=$(prompt_oneof "Do you want to enable Watchtower for automatic updates?" "Y" "N") + CONFIG_WATCHTOWER_ENABLED=$(prompt_oneof "Do you want to enable Watchtower for automatic updates?" "Y" "N") - NUM_CORES=$(get_nproc) - CONFIG_NUM_INSTANCES=$(read_number_range "How many instances of NocoDB do you want to run?" 1 "$NUM_CORES" 1) + NUM_CORES=$(get_nproc) + CONFIG_NUM_INSTANCES=$(read_number_range "How many instances of NocoDB do you want to run?" 1 "$NUM_CORES" 1) } set_default_options() { - CONFIG_EDITION="CE" - CONFIG_POSTGRES_SQLITE="P" - CONFIG_REDIS_ENABLED="Y" - CONFIG_MINIO_ENABLED="Y" - CONFIG_MINIO_DOMAIN_NAME=$(get_public_ip) - CONFIG_MINIO_SSL_ENABLED="N" - CONFIG_WATCHTOWER_ENABLED="Y" - CONFIG_NUM_INSTANCES=1 + CONFIG_EDITION="CE" + CONFIG_POSTGRES_SQLITE="P" + CONFIG_REDIS_ENABLED="Y" + CONFIG_MINIO_ENABLED="Y" + CONFIG_MINIO_DOMAIN_NAME=$(get_public_ip) + CONFIG_MINIO_SSL_ENABLED="N" + CONFIG_WATCHTOWER_ENABLED="Y" + CONFIG_NUM_INSTANCES=1 } generate_credentials() { - CONFIG_POSTGRES_PASSWORD=$(generate_password) - CONFIG_REDIS_PASSWORD=$(generate_password) - CONFIG_MINIO_ACCESS_KEY=$(generate_password) - CONFIG_MINIO_ACCESS_SECRET=$(generate_password) + CONFIG_POSTGRES_PASSWORD=$(generate_password) + CONFIG_REDIS_PASSWORD=$(generate_password) + CONFIG_MINIO_ACCESS_KEY=$(generate_password) + CONFIG_MINIO_ACCESS_SECRET=$(generate_password) } create_docker_compose_file() { - if [ "${CONFIG_EDITION}" = "EE" ]; then - image="nocodb/nocodb-ee:latest" - else - image="nocodb/nocodb:latest" - fi - - - # for easier string interpolation - if [ "${CONFIG_REDIS_ENABLED}" = "Y" ]; then - gen_redis=1 - fi - if [ "${CONFIG_MINIO_ENABLED}" = "Y" ]; then - gen_minio=1 - fi - if [ "${CONFIG_POSTGRES_SQLITE}" = "P" ]; then - gen_postgres=1 - fi - - local compose_file="docker-compose.yml" - - cat > "$compose_file" <"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" <> "$compose_file" <>"$compose_file" < "$env_file" <"$env_file" <> "$env_file" - echo "NC_LICENSE_KEY=${CONFIG_LICENSE_KEY}" >> "$env_file" - elif [ "${CONFIG_POSTGRES_SQLITE}" = "P" ]; then - echo "NC_DB=pg://db:5432?d=nocodb&user=postgres&password=${encoded_password}" >> "$env_file" - fi + if [ "${CONFIG_EDITION}" = "EE" ]; then + echo "DATABASE_URL=postgres://postgres:${encoded_password}@db:5432/nocodb" >>"$env_file" + echo "NC_LICENSE_KEY=${CONFIG_LICENSE_KEY}" >>"$env_file" + elif [ "${CONFIG_POSTGRES_SQLITE}" = "P" ]; then + echo "NC_DB=pg://db:5432?d=nocodb&user=postgres&password=${encoded_password}" >>"$env_file" + fi - if [ "${CONFIG_REDIS_ENABLED}" = "Y" ]; then - cat >> "$env_file" <>"$env_file" <> "$env_file" <>"$env_file" <> "$env_file" - elif is_valid_domain "$CONFIG_MINIO_DOMAIN_NAME"; then - echo "NC_S3_ENDPOINT=http://${CONFIG_MINIO_DOMAIN_NAME}" >> "$env_file" - else - echo "NC_S3_ENDPOINT=http://${CONFIG_MINIO_DOMAIN_NAME}:9000" >> "$env_file" - fi - fi + if [ "$CONFIG_MINIO_SSL_ENABLED" = "Y" ]; then + echo "NC_S3_ENDPOINT=https://${CONFIG_MINIO_DOMAIN_NAME}" >>"$env_file" + elif is_valid_domain "$CONFIG_MINIO_DOMAIN_NAME"; then + echo "NC_S3_ENDPOINT=http://${CONFIG_MINIO_DOMAIN_NAME}" >>"$env_file" + else + echo "NC_S3_ENDPOINT=http://${CONFIG_MINIO_DOMAIN_NAME}:9000" >>"$env_file" + fi + fi } create_update_script() { - cat > ./update.sh <./update.sh <