I want to install laravel sail in an existing project using the command from the documentation
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
composer install --ignore-platform-reqs
but after launching the sail up, my directories are rooted
how can i change it to "sail" with group 1000?
thx!