From 5a1898a64da15e6543245f116ee253f3e6e1070e Mon Sep 17 00:00:00 2001 From: Chicory Date: Mon, 29 Jul 2024 21:45:21 +0300 Subject: [PATCH] Makefile fix --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15555a2..7fe49bd 100644 --- a/Makefile +++ b/Makefile @@ -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 -u) docker-compose -f $(compose_file) compose_run := $(compose_command) run --rm $(service_name) build: