https://github.com/adoyle-h/minimal-docker-image
A minimal size Docker image.
https://github.com/adoyle-h/minimal-docker-image
docker docker-image minimal
Last synced: 2 months ago
JSON representation
A minimal size Docker image.
- Host: GitHub
- URL: https://github.com/adoyle-h/minimal-docker-image
- Owner: adoyle-h
- Created: 2018-06-21T13:28:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-21T14:05:13.000Z (about 8 years ago)
- Last Synced: 2025-10-23T16:29:45.078Z (8 months ago)
- Topics: docker, docker-image, minimal
- Language: Shell
- Homepage: https://hub.docker.com/r/adoyle/minimal/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minimal
A minimal size Docker image.
```
REPOSITORY TAG SIZE
adoyle/minimal hi-world 142B
adoyle/minimal 42 45B
```
## hi-world
Usage:
```
docker pull adoyle/minimal:hi-world
docker run --rm adoyle/minimal:hi-world
```
It is based on [Smallest x86 ELF Hello World](http://timelessname.com/elfbin/)
The process in container will print `Hi World`.
Build this image: `./tool/build hi-world`.
## 42
Usage:
```
docker pull docker pull adoyle/minimal:42
docker run --rm adoyle/minimal:42
```
It is based on [tiny-i386 binary](http://www.muppetlabs.com/~breadbox/software/tiny/return42.html)
The process in container will exit with code of 42.
Build this image: `./tool/build 42`.