Use "COMPOSE" variable consistently throughout the makefile
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
4
Makefile
4
Makefile
@@ -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.
|
||||
|
Reference in New Issue
Block a user