Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/docker-hub-frolvlad/docker-alpine-bash

Docker image with Bash and complete utils (busybox replacements) (10MB)
https://github.com/docker-hub-frolvlad/docker-alpine-bash

alpine bash docker-image

Last synced: about 4 hours ago
JSON representation

Docker image with Bash and complete utils (busybox replacements) (10MB)

Awesome Lists containing this project

README

        

[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-bash.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-bash/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-bash.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-bash/)

Bash Docker image
=================

This image is based on Alpine Linux image, which is only a 5MB image, and
contains [Bash](https://www.gnu.org/software/bash/) (Bourne Again SHell) with
some useful tools (e.g., complete implementations of grep, sed, awk, bc, head,
tail, and etc).

This image is only 10MB on disk.

Usage Example
-------------

```bash
$ docker run --rm frolvlad/alpine-bash bash -c 'echo "Hello World"'
```

Once you have run this command you will get printed 'Hello World' from Bash!