Created
August 9, 2022 04:46
-
-
Save ma-he-sh/29c9d20084285e7acc9abfa0ac63596c to your computer and use it in GitHub Desktop.
Install docker and docker-compoe for RaspberryPI4
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
sudo apt update && sudo apt-get upgrade | |
curl -sSL https://get.docker.com | sh | |
sudo usermod -aG docker ${USER} | |
sudo apt-get install libffi-dev libssl-dev | |
sudo apt install python3-dev | |
sudo apt-get install -y python3 python3-pip | |
sudo pip3 install docker-compose | |
sudo systemctl enable docker | |
sudo su - ${USER} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment