├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── verify-templating.yml ├── .gitignore ├── .test ├── config.sh └── tests │ └── bash-optional-features │ └── run.sh ├── 3.0 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 3.1 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 3.2 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 4.0 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 4.1 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 4.2 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 4.3 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 4.4 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 5.0 ├── Dockerfile ├── alpine3.21.patch └── docker-entrypoint.sh ├── 5.1 ├── Dockerfile └── docker-entrypoint.sh ├── 5.2 ├── Dockerfile └── docker-entrypoint.sh ├── 5.3 ├── Dockerfile └── docker-entrypoint.sh ├── Dockerfile.template ├── LICENSE ├── README.md ├── apply-templates.sh ├── devel ├── Dockerfile ├── alpine-strcpy.patch └── docker-entrypoint.sh ├── docker-entrypoint.sh ├── generate-stackbrew-library.sh ├── update.sh ├── versions.json └── versions.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/verify-templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/.github/workflows/verify-templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jq-template.awk 2 | .yq 3 | -------------------------------------------------------------------------------- /.test/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/.test/config.sh -------------------------------------------------------------------------------- /.test/tests/bash-optional-features/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/.test/tests/bash-optional-features/run.sh -------------------------------------------------------------------------------- /3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.0/Dockerfile -------------------------------------------------------------------------------- /3.0/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.0/alpine3.21.patch -------------------------------------------------------------------------------- /3.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.1/Dockerfile -------------------------------------------------------------------------------- /3.1/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.1/alpine3.21.patch -------------------------------------------------------------------------------- /3.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.2/Dockerfile -------------------------------------------------------------------------------- /3.2/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.2/alpine3.21.patch -------------------------------------------------------------------------------- /3.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/3.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.0/Dockerfile -------------------------------------------------------------------------------- /4.0/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.0/alpine3.21.patch -------------------------------------------------------------------------------- /4.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.1/Dockerfile -------------------------------------------------------------------------------- /4.1/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.1/alpine3.21.patch -------------------------------------------------------------------------------- /4.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.2/Dockerfile -------------------------------------------------------------------------------- /4.2/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.2/alpine3.21.patch -------------------------------------------------------------------------------- /4.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.3/Dockerfile -------------------------------------------------------------------------------- /4.3/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.3/alpine3.21.patch -------------------------------------------------------------------------------- /4.3/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.3/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.4/Dockerfile -------------------------------------------------------------------------------- /4.4/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.4/alpine3.21.patch -------------------------------------------------------------------------------- /4.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/4.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.0/Dockerfile -------------------------------------------------------------------------------- /5.0/alpine3.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.0/alpine3.21.patch -------------------------------------------------------------------------------- /5.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.1/Dockerfile -------------------------------------------------------------------------------- /5.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /5.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.2/Dockerfile -------------------------------------------------------------------------------- /5.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /5.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.3/Dockerfile -------------------------------------------------------------------------------- /5.3/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/5.3/docker-entrypoint.sh -------------------------------------------------------------------------------- /Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/Dockerfile.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/README.md -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /devel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/devel/Dockerfile -------------------------------------------------------------------------------- /devel/alpine-strcpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/devel/alpine-strcpy.patch -------------------------------------------------------------------------------- /devel/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/devel/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/update.sh -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/versions.json -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-bash/HEAD/versions.sh --------------------------------------------------------------------------------