mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 04:35:09 +00:00
chore: fallback to localhost if public ip not found
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -125,6 +125,11 @@ message_arr=()
|
||||
# extract public ip address
|
||||
PUBLIC_IP=$(dig +short myip.opendns.com @resolver1.opendns.com)
|
||||
|
||||
# Check if the public IP address is not empty, if empty then use the localhost
|
||||
if [ -z "$PUBLIC_IP" ]; then
|
||||
PUBLIC_IP="localhost"
|
||||
fi
|
||||
|
||||
# generate a folder for the docker-compose file which is not existing and do the setup within the folder
|
||||
# Define the folder name
|
||||
FOLDER_NAME="nocodb_$(date +"%Y%m%d_%H%M%S")"
|
||||
|
||||
Reference in New Issue
Block a user