Is it possible to keep update my files in a container and my local?
I’ve been practicing a bit of Docker, and for some reasons I don’t understand no version of python allows me to install torch on my local, so I decided to create a container with all the modules I need for a project. is it possible to associate the folder where I save the project as a volume of the container?
this to save all the changes directly on my local and not run the risk of losing them.
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.