Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.05 KB

README.md

File metadata and controls

27 lines (19 loc) · 1.05 KB

BusyBox with HTTPie-go

This version of the standard busybox container increases the size a bit (1.2MB to 9.2MB) by adding an HTTPie executable. (busybox: https://busybox.net/about.html). In the big scheme of things, this is still a small container.

Thank you to :

You can either use mine: joncrlsn/busybox:latest (View tags at //hub.docker.com/joncrlsn/busybox)

Or use these build instructions to build your own:

docker build -t <your-username>/busybox:0.1.0 .

# Run the docker container to test it out
docker run -it --rm <your-username>/busybox:0.1.0

# Continue if you want it publicly available..
# (assuming you have a hub.docker.com account and have logged in with 'docker login')

# It's a good idea to have a 'latest' tag too
docker tag <your-username>/busybox:0.1.0 <your-username>/busybox:latest

# push it up to dockerhub.io
docker push <your-username>/busybox:0.1.0
docker push <your-username>/busybox:latest