常见问题¶
安装Docker时报错¶
错误
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
提示
该问题原因是Docker目前只支持使用iptables作为防火墙后端,需要将系统切换回iptables。该问题在安装CasaOS时也会出现,解决方法如下:
sudo update-alternatives --set iptables /usr/sbin/iptables-legacy
sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
sudo systemctl restart docker