目前AWS推出了2021年6月前的EC2-t4g实例免费试用活动,由于t4g实例是基于ARM64架构,所以需要额外的一些步骤来安装Docker Compose
- Debian 10
- AArch64 or ARM64
安装Docker
https://docs.docker.com/engine/install/debian/
1 2 |
curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh |
OR
1 |
curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh |
测试
1 |
sudo docker run hello-world |
安装Docker Compose
1 2 3 |
sudo apt-get install -y libffi-dev libssl-dev sudo apt-get install -y python3 python3-pip sudo pip3 -v install docker-compose |
此安装方式为编译安装,所以需要较长时间
测试
1 |
docker-compose --version |
There are no comments yet