diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-21 19:32:40 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-21 19:32:52 -0700 |
commit | ac7a611ff004d6f4e2535f3a172bf0bf0734a376 (patch) | |
tree | ee34dbe13777b1d3687ea68aea31c8a142996040 | |
parent | static: add ssh-key from desktop (diff) | |
download | world-ac7a611ff004d6f4e2535f3a172bf0bf0734a376.tar.gz |
build: be explicit about the image to use
If we're not explicit, we're trying to run the image tagged `latest', but there's no image with that tag.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/notes/Makefile b/users/fcuny/notes/Makefile index b117922..81174c9 100644 --- a/users/fcuny/notes/Makefile +++ b/users/fcuny/notes/Makefile @@ -29,4 +29,4 @@ docker-build: docker-run: docker-build @echo "Running Docker image ..." - $(DOCKER) run -ti --rm -p 8080:8080 $(DOCKER_IMAGE) + $(DOCKER) run -ti --rm -p 8080:8080 "${DOCKER_IMAGE}:${DOCKER_IMAGE_REF}" |