安装使用

安装使用

Docker 安装及使用

docker 安装


官方一键脚本(需魔法上网)
shell
1
curl -fLsS https://get.docker.com/ | sh

国内环境一键安装脚本(来自 linuxmirrors.cn)

一键安装脚本,来自 linuxmirrors.cn

shell
1
bash <(curl -sSL https://linuxmirrors.cn/docker.sh)

选择Docker软件包

  • 可以使用 Arch Linux 社区发布的软件包:docker
  • 也可以使用 AUR 包:docker-git
shell
1
2
3
yay -S docker
# or
yay -S docker-git

启动Docker

Docker 会创建一个系统服务:docker.service,用以下命令进行启动

shell
1
sudo systemctl start docker.service

设置开机启动

shell
1
sudo systemctl enable docker.service

卸载非官方包(可选)

  • docker.io
  • docker-compose
  • docker-doc
  • podman-docker
shell
1
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done

添加 Docker 的官方 GPG 密钥

shell
1
2
3
4
5
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

添加 apt 源

shell
1
2
3
4
5
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

apt install

shell
1
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

卸载

shell
1
2
3
4
5
6
# apt卸载
sudo apt-get purge docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-ce-rootless-extras

# 删除文件及目录
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd

docker-compose 安装

shell
1
yay -S docker-compose

shell
1
apt install docker-compose