Hey everyone, I'm working on managing my Docker im...
# general
b
Hey everyone, I'm working on managing my Docker image tags in my repo. Right now, my tags look like ["service_name-{pants.hash}"], which is perfect for local runs. But when it comes to my CI/CD pipeline, I'd like to add the git commit message as an extra tag without losing the hash tag. So, it'd be like ["service_name-{pants.hash}", "service_name-{GIT_COMMIT}"]. Any tips on how to make this happen? Thanks!
h
We use an environment variable
c