Skip to content

Instantly share code, notes, and snippets.

@CT83
Created October 22, 2020 06:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CT83/6dbe0d9df3fd3ba4d57fd3a5347e5105 to your computer and use it in GitHub Desktop.
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
#!/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