diff --git a/README.md b/README.md index 5dfa9c0..f90b624 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,11 @@ sudo apt-get docker-buildx -y #### 2. Run the setup script: +Add your user to the docker group and login again: +```bash +sudo usermod -aG sudo $USER && sudo su - $USER +``` + This will download & execute the `setup.sh` script. ```bash diff --git a/scripts/setup.sh b/scripts/setup.sh index 9345ad5..cdc2abf 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -54,7 +54,7 @@ ln -sf "$APP_DIR/scripts/manager.sh" "$HOME/.local/bin/db-middleware" export PATH="$HOME/.local/bin:$PATH" source ~/.bashrc -sudo usermod -aG docker $USER -newgrp docker +# sudo usermod -aG docker $USER +# newgrp docker # Run the manager.sh script with the "install" argument "$APP_DIR/scripts/manager.sh" install \ No newline at end of file