From 2c43b569d0881c4c300f85f737257ada4bace027 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Tue, 13 Feb 2024 00:09:52 +0530 Subject: [PATCH] chore: pull latest images always Signed-off-by: Pranav C --- docker-compose/setup-script/noco.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose/setup-script/noco.sh b/docker-compose/setup-script/noco.sh index d8c24257d2..f9ed9d1602 100644 --- a/docker-compose/setup-script/noco.sh +++ b/docker-compose/setup-script/noco.sh @@ -205,7 +205,6 @@ IMAGE="nocodb/nocodb:latest"; # Determine the Docker image to use based on the edition if [ -n "$EDITION" ] && { [ "$EDITION" = "EE" ] || [ "$EDITION" = "ee" ]; }; then - echo "Using the NocoDB Enterprise Edition image" IMAGE="nocodb/nocodb-ee:latest" DATABASE_URL="DATABASE_URL=postgres://postgres:${ENCODED_PASSWORD}@db:5432/nocodb" @@ -439,6 +438,9 @@ EOF message_arr+=("Update script: update.sh") +# Pull latest images +sudo docker-compose pull + # Start the docker-compose setup sudo docker-compose up -d