...
sudo systemctl enable containerd.service
sudo usermod -a -G docker admin um den Dockerdaemon ansprechen zu dürfen
Proxy:
Als root neues Verzeichnis + Datei /etc/systemd/system/docker.service.d/http-proxy.conf anlegen
Inhalt:
[Service] Environment="HTTP_PROXY=http://proxy.fiz-karlsruhe.de:8888" Environment="HTTPS_PROXY=httpshttp://proxy.fiz-karlsruhe.de:8888" Environment="NO_PROXY=localhost,127.0.0.1"
Zusätzlich neues Verzeichnis + Datei <home>/.docker/config.json
Inhalt:
{
"proxies":
{
"default":
{
"httpProxy": "http://proxy.fiz-karlsruhe.de:8888",
"httpsProxy": "http://proxy.fiz-karlsruhe.de:8888",
"noProxy": "*.test.example.com,.example2.com,127.0.0.0/8"
}
}
}