actions-setup-docker icon indicating copy to clipboard operation
actions-setup-docker copied to clipboard

Tcp support

Open shargon opened this issue 1 year ago • 0 comments

I tried:

   - name: Install Docker
      uses: docker-practice/actions-setup-docker@master
      with:
        docker_version: 25.0.4
        docker_daemon_json: "{\"hosts\": [\"tcp://0.0.0.0:2375\", \"unix:///var/run/docker.sock\"]}"

But it didn't work

check docker version
check docker systemd status
show default daemon json content
show daemon json content
  /usr/bin/sudo cat /etc/docker/daemon.json
  {"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
/usr/bin/sudo systemctl restart docker
Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xeu docker.service" for details.
Error: Error: The process '/usr/bin/sudo' failed with exit code 1

shargon avatar Mar 15 '24 13:03 shargon