Last active
April 15, 2025 13:27
-
-
Save gruberdev/6618a3ad5010ceb335b4d728cc23fe10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
sudo apt-get update -y | |
echo "Installing git, docker.io, and make..." | |
sudo apt-get install -y git docker.io make | |
echo "Starting and enabling Docker service..." | |
sudo systemctl start docker | |
sudo systemctl enable docker && \ | |
echo "Adding current user ($USER) to the docker group..." && \ | |
sudo usermod -aG docker $USER && \ | |
newgrp docker && \ | |
git clone https://github.com/gruberdev/local-gitops.git && \ | |
cd local-gitops && \ | |
make | |
task tools | |
task dns | |
task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment