Enable TCP port 2375 for external connection to Docker
See this issue.
Docker best practise to Control and configure Docker with systemd.
-
Create
daemon.json
file in/etc/docker
:{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
-
Add
/etc/systemd/system/docker.service.d/override.conf
[Service] ExecStart= ExecStart=/usr/bin/dockerd
-
Reload the systemd daemon:
systemctl daemon-reload
-
Restart docker:
systemctl restart docker.service
Worked like charm on centos 7 too. Was struggling to get this working since 2 days.
Steps followed:
add the line below where you find ExecStart (under Service section):
Then,
3. systemctl daemon-reload
4. systemctl restart docker.service