树莓派安装 docker-compose

分享
2021-06-11 04:08
# Install required packages
sudo apt update
sudo apt install -y python3-pip python3-setuptools libffi-dev

# Install Docker Compose from pip (using Python3)
# This might take a while
sudo pip3 install docker-compose
验证码