Docker with a volume with user-level permissions
If you mount a folder in your docker all the files created in it will be owned by the root. To fix this add the following to the Dockerfile ARG USER_ID ARG GROUP_ID RUN addgroup --gid $GROUP_ID user RUN adduser --disabled-password --gecos '' --uid $USER_ID…
Continue reading...