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 | |
# Update APT package for Ubuntu-based Linux distributions | |
apt update && apt upgrade -y | |
# Download and install docker | |
curl -fsSL https://get.docker.com | sh | |
# Add this user into docker group | |
usermod -aG docker $SUDO_USER | |
# Install requirement package for docker-compose | |
apt install -y python3-pip | |
# Install docker-compose |