I am tired of the solutions mentioned in this thread. Editing / etc / default / docker did not help me.
Finally, that was the next decision.
Edit the file /lib/systemd/system/docker.service Find the line that starts with ExecStart and add -H = tcp: //0.0.0.0: 2375 so that it looks like
ExecStart=/usr/bin/docker daemon -H=fd:// -H=tcp://0.0.0.0:2375
Save Modified File Reload Docker Daemon
systemctl daemon-reload
Restart container
sudo service docker restart
Check if it works with the following command
curl http:
If everything is in order, the command should return JSON.
To verify remoteness, use the PC name or IP address of the Docker host.
source share