The Docker daemon inside the development container can be debugged with Delve.
Delve debugger listens on a port, which has to be exposed outside the development container. Also, in order to be able to debug the daemon, it has to be compiled with the debugging symbols. This can be done by launching the development container with the following command:
$ make BIND_DIR=. DOCKER_DEBUG=1 DELVE_PORT=127.0.0.1:2345:2345 shell
The DOCKER_DEBUG variable disables build optimizations, allowing to debug the binary, while DELVE_PORT publishes the specified port for use with the debugger.
The DELVE_PORT variable accepts the port in the same format as Docker CLI's --publish (-p) option. This means that the port can be published in multiple ways:
DELVE_PORT=127.0.0.1:2345:2345 - exposes debugger on port 2345 for local development only (recommended)DELVE_PORT=2345:2345 - exposes debugger on port 2345 without binding to specific IPDELVE_PORT=2345 - same as aboveIMPORTANT: Publishing the port without binding it to localhost (127.0.0.1) might expose the debugger outside the developer's machine and is not recommended.
$ make BIND_DIR=. DOCKER_DEBUG=1 DELVE_PORT=127.0.0.1:2345:2345 shell
$ ./hack/make.sh binary
$ make install
make.sh script:$ ./hack/make.sh runThe execution will stop and wait for the IDE or Delve CLI to attach to the port, specified with the
DELVE_PORT variable. Once the IDE or Delve CLI is attached, the execution will continue.DELVE_PORT variable corresponds to one, used in the Go Remote configuration.Congratulations, you have experienced how to use Delve to debug the Docker daemon and how to configure an IDE to make use of it.