scratch,latest: (scratch/Dockerfile)- 332KB Compressed
alpine,alpine-latest: (alpine/Dockerfile)- 2MB Compressed + the base alpine:latest image 2MB
alpine-3.7: (alpine-3.7/Dockerfile)- 2MB Compressed + the base alpine:3.7 image 2MB
alpine-3.6: (alpine-3.6/Dockerfile)- 2MB Compressed + the base alpine:3.6 image 2MB
The Docker file also visible on the Docker Hub page: https://hub.docker.com/r/06kellyjac/nyancat/~/dockerfile/
It's simple, just run the following in your terminal:
Standard Scratch:
docker run -it --rm --name nyancat 06kellyjac/nyancatAlpine:
docker run -it --rm --name nyancat 06kellyjac/nyancat:alpineThese commands create a docker container named nyancat that will remove its self when closed.
To exit press Ctrl+C
-
Where to get help:
I have contact details on my GitLab, the Docker Community Forums, the Docker Community Slack, or Stack Overflow -
Where to file issues:
https://gitlab.com/06kellyjac/docker_nyancat/issues -
Maintained by:
06kellyjac on GitLab -
Source of this description:
The GitLab README.md (history)
Nyancat is pretty cool. It's a pop-tart cat flying through space. 🐱🚀
The goal of this project was to make a lightweight image for Nyancat. There are two versions shipped:
latest/scratch- 332KB Compressed
- built from
scratchwhich is a special empty image
- built from
- Uses a binary compiled from the Nyancat CLI source code: source
- The binary runs on the Docker
scratchimage for absolute minimal size- The binary was compiled with
make SHARED=0 CC='gcc -static -s'to get a static binary if you want to build this image yourself with the Nyancat CLI source for additional peace of mind! 😊
- The binary was compiled with
- 332KB Compressed
alpine- 2MB Compressed + the base alpine image 2MB
- Built from
alpinewhich is also 2MB Compressed for a total install of 4MB - If you have
alpinecached (which you hopefully do, it's pretty great) you will only be downloading the 2MB
- Built from
- Alpine is a very small version of linux and builds the source code from a zip provided here:
- 2MB Compressed + the base alpine image 2MB
Thanks go to Klange and contributors on GitHub for the Nyancat CLI source.
The source used in this image: https://github.com/klange/nyancat
View licence information for the software contained in this image.
View licence information for the container setup.