Sign inSign up

vazhnov/devuan

By vazhnov

Updated over 5 years ago

Unofficial Devuan images, created from scratch by debootstrap

Image
0

168

vazhnov/devuan repository overview

See https://gitlab.com/vazhnov/devuan-docker-images/container_registry for fresh images.

Old info:

Devuan 3 Beowulf

How to create the same image of Devuan 4 testing:

sudo debootstrap --variant=minbase --include=iproute2 beowulf ./beowulf-minbase http://apt-cacher.1984.is:3142/pl.deb.devuan.org/merged
cd ./beowulf-minbase
# Next steps decreases image size from 202MB to 81MB
sudo find ./var/lib/apt/lists -type f -delete
sudo find ./var/cache/apt/archives/ -type f -delete
sudo rm -r ./usr/share/doc ./usr/share/man
find ./usr/share/locale -mindepth 1 -maxdepth 1 ! -name 'en*' ! -name 'pl*' | sudo xargs rm -r

Dockerfile:

FROM scratch
ADD ./beowulf-minbase /
CMD ["/bin/bash"]

Devuan 4 Chimaera (testing)

How to create the same image of Devuan 4 testing:

sudo debootstrap --variant=minbase --include=iproute2 chimaera ./chimaera-minbase http://apt-cacher.1984.is:3142/pl.deb.devuan.org/merged
cd ./chimaera-minbase
# Next steps decreases image size from 220MB to 92MB
sudo find ./var/lib/apt/lists -type f -delete
sudo find ./var/cache/apt/archives/ -type f -delete
sudo rm -r ./usr/share/doc ./usr/share/man
find ./usr/share/locale -mindepth 1 -maxdepth 1 ! -name 'en*' ! -name 'pl*' | sudo xargs rm -r

Dockerfile:

FROM scratch
ADD ./chimaera-minbase /
CMD ["/bin/bash"]

Tag summary

Content type

Image

Digest

Size

27.9 MB

Last updated

over 5 years ago

docker pull vazhnov/devuan:beowulf_minbase