Files
moby/cmd/dockerd
Sebastiaan van Stijn 43d6eb7173 pkg/pidfile: remove PIDFile type, rename New() to Write()
This type felt really redundant; `pidfile.New()` takes the path of the file to
create as an argument, so this is already known. The only thing the PIDFile
type provided was a `Remove()` method, which was just calling `os.Remove()` on
the path of the file.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-10-15 16:40:16 +02:00
..
2016-09-01 14:47:51 +08:00

docker.go contains Docker daemon's main function.

This file provides first line CLI argument parsing and environment variable setting.