make cleaning up old docker images easier set docker tag to include current date
Alan Pearce alan@alanpearce.eu
Sat, 11 May 2024 16:56:08 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M justfile → justfile
@@ -2,7 +2,7 @@ #! /usr/bin/env -S nix develop . --command just --justfile fly-system := "x86_64-linux" fly-registry := "registry.fly.io/alanpearce-eu" -docker-tag := env_var_or_default("DOCKER_TAG", `git rev-parse HEAD`) +docker-tag := env_var_or_default("DOCKER_TAG", `date --utc +%Y%m%d%H%M%S` + "-" + `git rev-parse --short HEAD`) version := `sentry-cli releases propose-version` environment := "production" started-at := `date +%s`