From 7a39496fcd1360260e79f5fb6f6b3f99b15221ba Mon Sep 17 00:00:00 2001 From: lou Date: Tue, 15 Oct 2024 17:03:06 -0400 Subject: [PATCH] add sudo to docker in case --- manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage b/manage index a2ac20e..511510f 100755 --- a/manage +++ b/manage @@ -86,7 +86,7 @@ function install_docker() { echo -e "${COLOR_GREEN}Docker Compose file already exists, skipping.${COLOR_RESET}" fi echo -e "${COLOR_BLUE}Creating Docker network...${COLOR_RESET}" - docker network create --subnet=10.5.0.0/16 aidxnfun-n + sudo docker network create --subnet=10.5.0.0/16 aidxnfun-n echo -e "${COLOR_GREEN}Done!${COLOR_RESET}" sudo usermod -aG docker $USER echo -e "${COLOR_GREEN}User added to Docker group. Please log out and back in for the changes to take effect.${COLOR_RESET}"