Loading... ### 树莓派安装 Docker 及 Docker-Compose #### 安装 Docker 1. 更新 apt 并安装 curl ```shell sudo apt-get update sudo apt-get install curl ``` 2. 安装 Docker ```shell curl -sSL https://get.docker.com| sh ``` 3. 给 Docker 设置 root 权限 ```shell sudo usermod -aG docker pi && sudo reboot ``` #### 安装 Docker-Compose 1. 更新 Python 3 ```shell sudo apt install python3 ``` 2. 自动清理 python2.7 的依赖 ```shell sudo apt autoremove ``` 3. 删除掉 python2.7 的软链接 ```shell sudo rm /usr/bin/python ``` 4. 创建一个新的软链接指向刚刚安装的 python3,代码中的 3.7 根据 python 版本变化而变化 ```shell sudo ln -s /usr/bin/python3.7 /usr/bin/python ``` 5. 安装 pip3 ```shell sudo apt-get install -y python3-pip ``` 6. 安装 Docker-Compose ```shell sudo pip install docker-compose ``` 最后修改:2022 年 12 月 06 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 谢谢你,我的宝