Skip to content

Instantly share code, notes, and snippets.

@IgorAvelino
Created February 4, 2025 12:26
Show Gist options
  • Save IgorAvelino/7b46ea9481471b5665d8577a642426b8 to your computer and use it in GitHub Desktop.
Save IgorAvelino/7b46ea9481471b5665d8577a642426b8 to your computer and use it in GitHub Desktop.
# CÓDIGO 01
sudo apt update && sudo apt install -y ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo tee /etc/apt/keyrings/docker.asc > /dev/null
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo "deb [signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bookworm stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
# ----------------------------------------------------------
# CÓDIGO 02
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# ----------------------------------------------------------
# BAIXAR REPOSITÓRIO
git clone https://github.com/webpwnized/mutillidae-dockerhub.git
# ----------------------------------------------------------
# RODAR PROJETO
docker compose up -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment