Compare commits

..

2 Commits

Author SHA1 Message Date
374ccf2a8d
fix: remove unqualified tag
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-01-16 14:39:00 +01:00
8a293f879b
chore(deps): update dependency docker/compose to v2.32.4 2025-01-16 14:37:47 +01:00

View File

@ -1,6 +1,6 @@
# DC_VERSION
# Only required to install a specifiy version
DC_VERSION?=v2.32.3 # renovate: datasource=github-releases depName=docker/compose
DC_VERSION?=v2.32.4 # renovate: datasource=github-releases depName=docker/compose
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and
@ -26,14 +26,14 @@ container-image/build:
--file Dockerfile \
--no-cache \
--pull \
--tag ${DC_IMAGE_UNQUALIFIED} \
--tag ${DC_IMAGE_FULLY_QUALIFIED} \
.
# DELETE CONTAINER IMAGE
# =====================================================================================================================
PHONY:=container-image/delete
container-image/delete:
- ${CONTAINER_RUNTIME} image rm ${DC_IMAGE_FULLY_QUALIFIED} ${DC_IMAGE_UNQUALIFIED}
- ${CONTAINER_RUNTIME} image rm ${DC_IMAGE_FULLY_QUALIFIED}
- ${CONTAINER_RUNTIME} image rm ${BASE_IMAGE_FULL}
# PUSH CONTAINER IMAGE