Skip to content

Instantly share code, notes, and snippets.

@lincolnaleixo
Last active June 24, 2023 11:14
Show Gist options
  • Save lincolnaleixo/6dfa4d3c99c927cc29a1d56b367fb54a to your computer and use it in GitHub Desktop.
Save lincolnaleixo/6dfa4d3c99c927cc29a1d56b367fb54a to your computer and use it in GitHub Desktop.
#!/bin/bash
apt-get update
apt-get install -y sudo rsync ca-certificates curl gnupg
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo $VERSION_CODENAME) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
#usermod -aG docker $USER
@lincolnaleixo
Copy link
Author

lincolnaleixo commented Jun 20, 2023

wget -O - https://gist.githubusercontent.com/lincolnaleixo/6dfa4d3c99c927cc29a1d56b367fb54a/raw/d6211ec29f983710bd86c4e7ae731836cf058a38/new_server.sh | sudo bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment