├── 29 ├── cli │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── modprobe.sh ├── dind-rootless │ └── Dockerfile ├── dind │ ├── Dockerfile │ └── dockerd-entrypoint.sh └── windows │ ├── windowsservercore-ltsc2022 │ └── Dockerfile │ └── windowsservercore-ltsc2025 │ └── Dockerfile ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── verify-templating.yml ├── .gitignore ├── Dockerfile-cli.template ├── Dockerfile-dind-rootless.template ├── Dockerfile-dind.template ├── Dockerfile-windows-servercore.template ├── LICENSE ├── README.md ├── apply-templates.sh ├── docker-entrypoint.sh ├── dockerd-entrypoint.sh ├── generate-stackbrew-library.sh ├── modprobe.sh ├── shared.jq ├── update.sh ├── versions.json └── versions.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/verify-templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/.github/workflows/verify-templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jq-template.awk 2 | -------------------------------------------------------------------------------- /29/cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/cli/Dockerfile -------------------------------------------------------------------------------- /29/cli/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/cli/docker-entrypoint.sh -------------------------------------------------------------------------------- /29/cli/modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/cli/modprobe.sh -------------------------------------------------------------------------------- /29/dind-rootless/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/dind-rootless/Dockerfile -------------------------------------------------------------------------------- /29/dind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/dind/Dockerfile -------------------------------------------------------------------------------- /29/dind/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/dind/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /29/windows/windowsservercore-ltsc2022/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/windows/windowsservercore-ltsc2022/Dockerfile -------------------------------------------------------------------------------- /29/windows/windowsservercore-ltsc2025/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/29/windows/windowsservercore-ltsc2025/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-cli.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/Dockerfile-cli.template -------------------------------------------------------------------------------- /Dockerfile-dind-rootless.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/Dockerfile-dind-rootless.template -------------------------------------------------------------------------------- /Dockerfile-dind.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/Dockerfile-dind.template -------------------------------------------------------------------------------- /Dockerfile-windows-servercore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/Dockerfile-windows-servercore.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/README.md -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/modprobe.sh -------------------------------------------------------------------------------- /shared.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/shared.jq -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/update.sh -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/versions.json -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/docker/HEAD/versions.sh --------------------------------------------------------------------------------