We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PVE 是 Debian 系统,按照官网 Debian 流程来安装即可:
# 卸载冲突包 for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do apt-get remove $pkg; done # Add Docker's official GPG key: apt-get update apt-get install -y ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: 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" | \ tee /etc/apt/sources.list.d/docker.list > /dev/null apt-get update # 开始安装 apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
The text was updated successfully, but these errors were encountered:
可以参考这里: https://www.coderjia.cn/archives/dba3f94c-a021-468a-8ac6-e840f85867ea
tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": [ "https://docker.unsee.tech", "https://dockerpull.org", "https://docker.1panel.live", "https://dockerhub.icu" ] } EOF
Sorry, something went wrong.
No branches or pull requests
PVE 是 Debian 系统,按照官网 Debian 流程来安装即可:
The text was updated successfully, but these errors were encountered: