Use "COMPOSE" variable consistently throughout the makefile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-16 16:22:11 +01:00
parent 17187f5a1e
commit b0f8f66fcf

View File

@@ -41,11 +41,11 @@ help:
.PHONY: help
dev: ##@development Start all containers and show their logs.
@USER_ID=$${USER_ID:-`id -u`} GROUP_ID=$${GROUP_ID:-`id -g`} docker compose -f docker-compose.development.yml up --build --force-recreate
USER_ID=$${USER_ID:-`id -u`} GROUP_ID=$${GROUP_ID:-`id -g`} $(COMPOSE) -f docker-compose.development.yml up --build --force-recreate
.PHONY: dev
dev.up: ##@development Start all containers and detach.
@USER_ID=$${USER_ID:-`id -u`} GROUP_ID=$${GROUP_ID:-`id -g`} docker compose -f docker-compose.development.yml up --build --force-recreate --detach
@USER_ID=$${USER_ID:-`id -u`} GROUP_ID=$${GROUP_ID:-`id -g`} $(COMPOSE) -f docker-compose.development.yml up --build --force-recreate --detach
.PHONY: dev.up
dev.down: ##@development Stop all containers.