Giter Club home page Giter Club logo

Comments (9)

hectorm avatar hectorm commented on May 29, 2024 9

I was also suffering from this problem but I fixed it by restarting the Docker service after Docker Machine modifies its configuration.

[[runners]]
  [runners.machine]
    MachineOptions = [
      """hetzner-user-data=
        #cloud-config
        runcmd:
          - |
            while sleep 1; do
              if [ -e /etc/systemd/system/docker.service.d/10-machine.conf ]; then
                systemctl restart docker
                break
              fi
            done &
      """
    ]

from docker-machine-driver-hetzner.

sokraflex avatar sokraflex commented on May 29, 2024 3

I was running into exactly the same issue and can confirm that downgrading docker fixes the issue:

--engine-install-url "https://releases.rancher.com/install-docker/19.03.9.sh"

from docker-machine-driver-hetzner.

JanKoppe avatar JanKoppe commented on May 29, 2024 3

Had to modify the format of solution by @hectorm a bit, but with this it's working great now:

"hetzner-user-data=#!/bin/sh\nwhile sleep 1; do if [ -e /etc/systemd/system/docker.service.d/10-machine.conf ]; then systemctl restart docker ; break ; fi ; done &",

from docker-machine-driver-hetzner.

alexandernst avatar alexandernst commented on May 29, 2024 2

@hectorm 's workaround almost worked for me. Had to add a small delay:

[[runners]]
  [runners.machine]
    MachineOptions = [
      """hetzner-user-data=
        #cloud-config
        runcmd:
          - |
            while sleep 1; do
              if [ -e /etc/systemd/system/docker.service.d/10-machine.conf ]; then
                sleep 15
                systemctl restart docker
                break
              fi
            done &
      """
    ]

from docker-machine-driver-hetzner.

JonasProgrammer avatar JonasProgrammer commented on May 29, 2024

Hi,

this seems to be a core docker-machine issue, as you have already confirmed by your edit. Could you verify @sokraflex's workaround and see if that fixes the issue for you please?

Even if it does not, I don't think there is anything the driver can do here. I'll close this, as it is out-of-scope, but feel free to use this thread for further discussion.

from docker-machine-driver-hetzner.

szEvEz avatar szEvEz commented on May 29, 2024

Ran into the exact same issue. Apparently it has something to do with the latest docker version 20.10 which was released yesterday. Downgrading docker via engine-install-urlsolved the issue for me.

from docker-machine-driver-hetzner.

fschrempf avatar fschrempf commented on May 29, 2024

Same issue here. Workaround with downgrading docker works.

from docker-machine-driver-hetzner.

gerwinbrunner avatar gerwinbrunner commented on May 29, 2024

Is this still an issue?

from docker-machine-driver-hetzner.

timothyallan avatar timothyallan commented on May 29, 2024

Yes, I still get the same error with Docker version 20.10.4, build d3cb89e

from docker-machine-driver-hetzner.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.