概览:
Install reference:
Get Docker Engine - Community for Debian
Uninstall old versions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 sudo apt remove docker docker-engine docker.io containerd runcsudo apt updatesudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-commoncurl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - sudo apt-key fingerprint 0EBFCD88sudo add-apt-repository \ "deb [arch=arm64] https://download.docker.com/linux/debian \ $(lsb_release -cs) \ stable" sudo apt updatesudo apt install docker-ce docker-ce-cli containerd.io
1 sudo gpasswd -a ${USER} docker
调整防火墙 在官方64位新版本系统中,好像防火墙这个问题没有出现了。
Q 1 2 guzal@GuzalAida:~$ sudo iptables -nvL iptables: Operation not supported.
A 1 2 3 4 5 6 7 8 9 10 11 guzal@GuzalAida:~$ sudo update-alternatives --config iptables There are 2 choices for the alternative iptables (providing /usr/sbin/iptables). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/sbin/iptables-nft 20 auto mode 1 /usr/sbin/iptables-legacy 10 manual mode 2 /usr/sbin/iptables-nft 20 manual mode Press <enter> to keep the current choice[*], or type selection number: 1 update-alternatives: using /usr/sbin/iptables-legacy to provide /usr/sbin/iptables (iptables) in manual mode
Hi there, I’m Mardan(ka1i).