39 lines
1.3 KiB
Markdown
39 lines
1.3 KiB
Markdown
[](https://gitlab.com/paddy-hack/devuan/commits/master)
|
|
|
|
Devuan Docker Base Images
|
|
=========================
|
|
|
|
For reasons outlined in my [Sandwiching Docker Between Devuan][1] blog
|
|
post (in the bottom part), I decided to roll my own Devuan base images.
|
|
|
|
You can pull the latest base image for the current Devuan release with
|
|
|
|
``` sh
|
|
docker pull registry.gitlab.com/paddy-hack/devuan
|
|
```
|
|
|
|
Versioned images are available from [the container registry][2] as
|
|
well.
|
|
|
|
How did I get there?
|
|
--------------------
|
|
|
|
I had to start somewhere, so the first step takes a Debian base image
|
|
and converts that following the Devuan [migration instructions][3].
|
|
The image is pushed to the registry, mainly for reference purposes,
|
|
and used to run Devuan's ``debootstrap``. This produces a ``rootfs``
|
|
that is imported to the Docker cache, pushed, re-tagged and pushed
|
|
again to the [container registry][2].
|
|
|
|
BTW, you can pull the migrated image with
|
|
|
|
``` sh
|
|
docker pull registry.gitlab.com/paddy-hack/devuan/migrated
|
|
```
|
|
|
|
if so inclined.
|
|
|
|
[1]: https://paddy-hack.gitlab.io/posts/sandwiching-docker-with-devuan/
|
|
[2]: https://gitlab.com/paddy-hack/devuan/container_registry
|
|
[3]: https://devuan.org/os/documentation/dev1fanboy/Upgrade-to-Devuan
|