Open
Description
Hi!
First of all, congratulations for this amazing repository.
I found out a problem using Makefile commands if the Linux current user is not 1000. Makefile don't pass the environment variables and docker-composer files get always 1000. This causes write permissions errors on app volumes. I think this could be fixed with something like this:
Makefile
HOST_UID=$(shell id -u)
HOST_GID=$(shell id -g)
...
up: ## Up containers
HOST_UID=$(HOST_UID) HOST_GID=$(HOST_GID) docker-compose ${DC_RUN_ARGS} up --remove-orphans
...
Thank you very much!