moby/cmd/dockerd
Sebastiaan van Stijn 32b299f63e
daemon/config: rename CommonTLSOptions to TLSOptions
This type was added in 677a6b3506, and named
"common", because at the time, the "docker" and "dockerd" (daemon) code
were still in the same repository, and shared this type. Renaming it, now
that's no longer the case.

As there are no external consumers of this type, I'm not adding an alias.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-15 10:44:24 +01:00
..
trap cmd/dockerd: fix empty-lines (revive) 2022-09-28 01:58:52 +02:00
cobra.go cli: move cobra customizations into cmd/dockerd 2022-12-14 11:37:51 +01:00
config.go daemon/config: remove TrustKeyPath, and local utilities 2022-11-28 20:29:19 +01:00
config_unix.go daemon/config: New(): initialize config with platform-specific defaults 2022-08-17 08:54:32 +02:00
config_unix_test.go daemon/config: New(): initialize config with platform-specific defaults 2022-08-17 08:54:32 +02:00
config_windows.go daemon/config: New(): initialize config with platform-specific defaults 2022-08-17 08:54:32 +02:00
daemon.go daemon/config: rename CommonTLSOptions to TLSOptions 2022-12-15 10:44:24 +01:00
daemon_freebsd.go daemon: move check for CPU-realtime daemon options 2022-03-03 19:50:27 +01:00
daemon_linux.go daemon: move check for CPU-realtime daemon options 2022-03-03 19:50:27 +01:00
daemon_test.go daemon/config: rename CommonTLSOptions to TLSOptions 2022-12-15 10:44:24 +01:00
daemon_unix.go daemon/config: remove TrustKeyPath, and local utilities 2022-11-28 20:29:19 +01:00
daemon_unix_test.go cmd/dockerd: produce error when using discovery options 2022-01-06 18:28:15 +01:00
daemon_windows.go daemon/config: remove TrustKeyPath, and local utilities 2022-11-28 20:29:19 +01:00
docker.go cli: move cobra customizations into cmd/dockerd 2022-12-14 11:37:51 +01:00
docker_unix.go Update to Go 1.17.0, and gofmt with Go 1.17 2021-08-24 23:33:27 +02:00
docker_windows.go daemon/config: remove TrustKeyPath, and local utilities 2022-11-28 20:29:19 +01:00
error.go cli: move cobra customizations into cmd/dockerd 2022-12-14 11:37:51 +01:00
genwinres_windows.go use go-winres for cross to create Windows resources 2022-04-14 19:52:35 +02:00
metrics.go set ReadHeaderTimeout to address G112: Potential Slowloris Attack (gosec) 2022-09-22 12:13:28 +02:00
options.go cli: remove cli/config package, integrate into cmd/dockerd 2022-12-14 12:52:40 +01:00
options_test.go cli: remove cli/config package, integrate into cmd/dockerd 2022-12-14 12:52:40 +01:00
README.md Fix readme doc for dockerd 2016-09-01 14:47:51 +08:00
required.go cli: move cobra customizations into cmd/dockerd 2022-12-14 11:37:51 +01:00
service_unsupported.go Update to Go 1.17.0, and gofmt with Go 1.17 2021-08-24 23:33:27 +02:00
service_windows.go Merge pull request #44287 from thaJeztah/use_SetRecoveryActions 2022-10-14 18:18:47 +00:00

docker.go contains Docker daemon's main function.

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