docker-bash/readme.md

12 lines
608 B
Markdown
Raw Normal View History

2019-09-06 09:12:01 +00:00
# docker with bash
This is a Docker image directly derived from the Docker image `docker`, which is required whenever you need the docker tools within a container.
I use it regularly within Gitlab CI runners. Most recently I was wondering why a specific bash feature (variable indirection) wasn't available in a CI script. The reason was simple: the Docker `docker` image doesn't contain `bash` at all.
2020-07-17 14:23:30 +02:00
This image now is derived from the Docker `docker` image and just adds the bash, curl, git and python.
2019-09-06 09:12:01 +00:00
2020-07-17 14:23:30 +02:00
I would say: Use it the same way as the original image, you just have the additional stuff now.
2019-09-06 09:12:01 +00:00
2020-06-08 14:44:07 +00:00