
On 2019-08-20 07:21, Wawrzek Niewodniczanski wrote:
Hi,
I wonder if there are any materials on how to use Crux docker image. I'm especially interested in preparing the ISO image in it.
Wawrzek PS. Who can bump docker version to 3.5?
Hey, I'm not aware of any specific materials but the image itself should be pretty basic. Are you using the one on the docker hub (https://hub.docker.com/_/crux)? I use my own image but the idea should be the same. You could pull the image down and create your own with any changes necessary. For example, I create a new image for testing that ports and their dependencies build like so: $ docker run -it --name crux-3.5-builder crux:3.5 <add build user, install fakeroot, configure repos and pkgmk, pkgadd, and prt-get> <exit the container> $ docker commit crux-3.5-builder crux:3.5-builder Then I can use crux:3.5-builder to easily test builds. I also create one called crux:3.5-builder-x where xorg is installed as well, to save time. Hope that's somewhat helpful. I believe James Mills is the person who can update that image. Matt