release.nix -> default.nix

the default should be to build all the images
This commit is contained in:
zimbatm 2019-12-17 23:29:41 +01:00
parent 987c5c9460
commit f90912f967
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
9 changed files with 19 additions and 19 deletions

View file

@ -88,7 +88,7 @@ All images are automatically built and pushed to Docker Hub.
To add a new image to the project, create a new folder under
`./images/<image-name>` with a default.nix that returns the docker image.
Then run `nix-build release.nix -A <image-name>` to test that it builds, and
Then run `nix-build -A <image-name>` to test that it builds, and
then use
`docker load -i /nix/store/...<image-name>.tar.gz` to load and test the image.