Skip to content

Instantly share code, notes, and snippets.

@adamdadd
Created September 12, 2021 21:30
Show Gist options
  • Save adamdadd/1eac1c478595c318a4139508ad158f2f to your computer and use it in GitHub Desktop.
Save adamdadd/1eac1c478595c318a4139508ad158f2f to your computer and use it in GitHub Desktop.
Install docker-compose on AWS Graviton2 Amazon Linux 2
#!/bin/bash
yum install docker git python3 python3-pip python3-devel gcc libffi-devel openssl11-devel
service docker start
chkconfig docker on
pip3 install wheel
wget https://github.com/docker/compose/archive/1.27.4.tar.gz
tar xzvf 1.27.4.tar.gz
cd compose-1.27.4/
python3 -m pip install -IU docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment