Makefile fix
All checks were successful
Run code tests / Run-code-test (push) Successful in 1m0s

This commit is contained in:
Chicory ☕ 2024-07-29 21:45:21 +03:00
parent d6d7fbfacc
commit 95a84bc2f6
Signed by: chicory
GPG Key ID: AC95A793F70BEDCD

View File

@ -1,6 +1,6 @@
service_name := composer-package-dev
compose_file := ./docker/docker-compose.yaml
compose_command := PUID=${UID} PGID=${GID} docker-compose -f $(compose_file)
compose_command := PUID=$(shell id -u) PGID=$(shell id -g) docker-compose -f $(compose_file)
compose_run := $(compose_command) run --rm $(service_name)
build: