about summary refs log tree commit diff
path: root/users/fcuny/blog/Makefile
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-21 19:32:40 -0700
committerFranck Cuny <franck@fcuny.net>2021-10-21 19:32:52 -0700
commit36e2de74e581d7efac8e20fc5e5a7622d7030340 (patch)
tree7b837f5745c586f2889220655d7a86921f06a684 /users/fcuny/blog/Makefile
parentstatic: add ssh-key from desktop (diff)
downloadworld-36e2de74e581d7efac8e20fc5e5a7622d7030340.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 'users/fcuny/blog/Makefile')
-rw-r--r--users/fcuny/blog/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/blog/Makefile b/users/fcuny/blog/Makefile
index b117922..81174c9 100644
--- a/users/fcuny/blog/Makefile
+++ b/users/fcuny/blog/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}"