all repos — website @ 8661363281c2902d2dba875e7f51c3d34d404595

My website

add date tag to docker image
Alan Pearce alan@alanpearce.eu
Mon, 09 Dec 2024 09:38:29 +0100
commit

8661363281c2902d2dba875e7f51c3d34d404595

parent

668c1b6a70782da5c25fe9529fe9fcc5ad47b880

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M justfilejustfile
@@ -2,6 +2,7 @@ #!/usr/bin/env nix #!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 @@ 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 }}