Can docker compose volume create the entire path as non-root user?
I created a user with uid 1000 in the Dockerfile and created a directory /app, changing the owner of /app to uid 1000. Spring Boot also starts using the user with uid 1000. RUN adduser --uid 1000 -D appuser RUN…