Parnell Springmeyer
Parnell Springmeyer
@lorenzleutgeb, thanks for the issue and sorry for the extremely long delay in responding. For some reason I wasn't notified of this issue. I agree that using the idiomatic approach...
@paulyoung what are you lost on? Also, if you're on a newer version of Nix, there was a lot of work done to upgrade the stock dockerTools to support V2...
Ah okay. Next you need to load it into a running docker daemon instance by: ``` $(nix-build --no-out-link container.nix)/compositeImage.sh | docker load ```
We do that as part of the `preStart` script of a systemd unit responsible for "running" a container, e.g. ``` preStart = '' ${importedContainerDerivation}/compositeImage.sh | ${docker}/bin/docker load ''; script =...
Note, to avoid running `docker load` everytime (because `docker load` isn't very smart) we also check if the image already exists ala ``` if [[ "$(${docker}/bin/docker images -q ${importedContainerDerivation.image} 2>/dev/null)"...
@paulyoung no problem!
@paulyoung correct. You need to download the official Docker app for MacOS which includes tooling to run the docker daemon in a VM (but it makes it transparent to the...
@paulyoung no problem!
@sboosali I don't think we've worked on this at all yet because most of us have been pretty busy. We are _very_ open to receiving contributions so if you find...
I completely agree! My intention was to communicate that we have a welcoming attitude if someone happens to take a stab before we get to it; it was not to...