From 8661363281c2902d2dba875e7f51c3d34d404595 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 9 Dec 2024 09:38:29 +0100 Subject: add date tag to docker image --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'justfile') diff --git a/justfile b/justfile index ab48179..60fd294 100755 --- a/justfile +++ b/justfile @@ -2,6 +2,7 @@ #!nix develop ``.#ci`` --command just --justfile docker_registry := "registry.fly.io/alanpearce-eu" +docker-tag := env_var_or_default("DOCKER_TAG", `date --utc +%Y%m%d%H%M%S` + "-" + `git rev-parse --short HEAD`) listen_address := env_var_or_default("LISTEN_ADDRESS", "::1") tls_port := env_var_or_default("TLS_PORT", "8443") port := env_var_or_default("PORT", "8080") @@ -34,4 +35,4 @@ ci: build check-links cd *DEPLOY_FLAGS: fly auth docker templ generate - fly deploy --image $(KO_DOCKER_REPO={{ docker_registry }} ko build --bare ./cmd/server) {{ DEPLOY_FLAGS }} + fly deploy --image $(KO_DOCKER_REPO={{ docker_registry }} ko build --bare --tags {{ docker-tag }} ./cmd/server) {{ DEPLOY_FLAGS }} -- cgit 1.4.1