Description
Thanks a lot for making version 1.5.2 available, really much appreciated.
Now, I run into a new issue due to the latest git version contained in that docker image, which, of course, is a good thing. The problem is that git introduced the concept of safe directories, i.e. no git command can be executed unless the working directory is declared safe in the global git settings.
Now, in mkdocs there are some nice plugins that use the git logs of the current project to extract the date and author of each page. But they now fail due to the missing configuration on the host, i.e. the docker container. The plugins can't fix this themselves, it needs to be resolved before actually installing such plugins.
As a workaround I cloned this project and tested it by adding the following line into the dockerfile:
git config --global --add safe.directory /mkdocs
right after the apk add --update ...
command. That solves the issue, but of course only because my working directory is /mkdocs
. I'm aware, this won't work for other working directories. So, that command should ideally be executed as part of the command that executes when the container gets built when we know the working directory of that container.
Is that even possible?