Skip to content

Instantly share code, notes, and snippets.

@yolabingo
Last active March 11, 2021 00:12
Show Gist options
  • Save yolabingo/2da668dc353198dc21831e92396ff9fe to your computer and use it in GitHub Desktop.
Save yolabingo/2da668dc353198dc21831e92396ff9fe to your computer and use it in GitHub Desktop.
install docker-compose on amazon linux arm64
sudo yum install -y python3-devel gcc docker
sudo useradd -m -G docker -s /bin/bash docker
sudo su - docker
python3 -m venv python3-env
source python3-env/bin/activate
# or export PATH=$HOME/python3-env/bin:$PATH and add to .bash_profile
# upgrade pip first else you may get rust errors while building docker-compose
pip install --upgrade pip
pip install docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment