Skip to content

Instantly share code, notes, and snippets.

View voicenter's full-sized avatar

Voicenter voicenter

View GitHub Profile
@voicenter
voicenter / install_docker.sh
Last active April 5, 2023 04:19 — forked from angristan/install_docker.sh
Script to install Docker and Docker-Compose on Debian
#!/bin/bash
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common sudo
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
apt-get update