Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the simply-static domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/html/wp-includes/functions.php on line 6121
树莓派安装docker

树莓派安装docker

安装DOCKER 及 DOCKER-COMPOSE步骤

  1. apt更新:
apt-get update
  1. 安装python和pip(如已安装可省略):
apt-get install -y python python-pip
  1. 安装libffi-dev:
apt-get install libffi-dev
  1. 用pip安装docker 及 docker-compose:
sudo curl -sSL https://get.docker.com | sh
pip install docker
pip install docker-compose

树莓派5安装docker

sudo apt install docker
sudo apt install docker-compose