Configure daemon to listen on TCP

sudo emacs /lib/systemd/system/docker.service # remove -H option
sudo emacs /etc/docker/daemon.json # update to the following:
# { "hosts": [ "tcp://127.0.0.1:2375", "fd://" ] }
sudo systemctl daemon-reload
sudo systemctl restart docker.service