Created
October 22, 2020 06:33
-
-
Save CT83/6dbe0d9df3fd3ba4d57fd3a5347e5105 to your computer and use it in GitHub Desktop.
This is a script to install Docker and Docker Compose on the Jetson devices
This file contains 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 | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
sudo apt-get install curl python3-pip libffi-dev python-openssl libssl-dev zlib1g-dev gcc g++ make -y | |
curl -sSL https://get.docker.com/ | sh | |
sudo pip3 install docker-compose | |
sudo docker-compose --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment