Sign inSign up

zoobab/tinycore-x64

By zoobab

Updated almost 11 years ago

TinyCoreLinux x64 minimal image (16MB). The original rootfs is here: http://distro.ibiblio.org/tinycorelinux/5.x/x86_64/release/distribution_files/rootfs64.gz

Image
3

10K+

zoobab/tinycore-x64 repository overview

TinyCoreLinux x64 minimal image (16MB).

The original rootfs is here:

http://distro.ibiblio.org/tinycorelinux/5.x/x86_64/release/distribution_files/rootfs64.gz

Rootfs64.gz is a gzipped cpio file, so since docker does not support cpio.gz files, I had to convert it to tgz with:

# gunzip rootfs64.gz
# mv rootfs64 rootfs64.cpio
# mkdir output
# cd output
# cpio -idv < ../rootfs64.cpio
# tar -cvzf ../rootfs64.tgz .
# cd ..
# screen -d -m python -m SimpleHTTPServer
# docker import http://localhost:8000/rootfs64.tgz

To have a shell, there is no bash, so call /bin/sh:

# docker run -i -t zoobab/tinycore-x64 /bin/sh
/ # cat /etc/issue
Core Linux

Tag summary

Content type

Image

Digest

sha256:c3f9e3324

Size

3.3 MB

Last updated

almost 11 years ago

docker pull zoobab/tinycore-x64