From 7a3ed701d18994ad9fcbf8705b2c40872c4aa8bf Mon Sep 17 00:00:00 2001 From: abdulhade Date: Thu, 20 Mar 2025 06:33:44 +0300 Subject: [PATCH] Added a request to add the user to the docker group --- scripts/manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/manager.sh b/scripts/manager.sh index 2b8d7e1..af60b94 100755 --- a/scripts/manager.sh +++ b/scripts/manager.sh @@ -50,7 +50,7 @@ build_docker_image() { fi echo "Building Docker image..." export DOCKER_BUILDKIT=1 - if sudo docker build -t "$IMAGE_NAME" .; then + if docker build -t "$IMAGE_NAME" .; then echo "Docker image built successfully." return 0 else