daemon_linux.go 362 B

123456789
  1. //go:build linux
  2. package docker
  3. // daemonConfigPath returns the standard Docker Engine daemon config path on
  4. // Linux. This is a fixed, well-known OS location for the docker daemon.
  5. func daemonConfigPath() string {
  6. return "/etc/docker/daemon.json" // arozos-lint-ignore: fixed Linux docker daemon config location, isolated in a linux-only build-tagged file
  7. }