Image Overview: bash

Overview: bash Chainguard Image

Container image with only Bash and libc. Suitable for running any small scripts or binaries that need Bash instead of the BusyBox shell.

Download this Image

The image is available on cgr.dev:

docker pull cgr.dev/chainguard/bash:latest

Usage

You open up an interactive shell in the Bash Image with a command like the following:

docker run -it cgr.dev/chainguard/bash:latest /bin/bash

You can also use a bind mount to test scripts from your local machine on the Bash Image:

docker run -it --rm -v /path/to/local-script.sh:/container-script.sh cgr.dev/chainguard/bash:latest /container-script.sh

Last updated: 2024-04-11 12:38