Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 568 Bytes

troubleshooting.md

File metadata and controls

11 lines (6 loc) · 568 Bytes

Troubleshooting

Permissions outside container

As explained here, on GNU/Linux after installing Symfony git diff will complain ...Not a git repository..., because files created inside container will have ownership set to root user, to fix that we need to set ownership to the current user outside the container with command:

docker compose run --rm php chown -R $(id -u):$(id -g) .

or:

make ownership