I'm using the OpenAPI generator in a dockerized form:
docker run --rm \
-v $PWD:/local openapitools/openapi-generator-cli generate \
-i /local/petstore.yaml \
-g go \
-o /local/out/go
while this works, I notice that the files I mapped inside the container are now "owned" by docker and removing them requires a sudo rm -rf ...
I've seen various blogs and threads on how to change permissions or sudo chown
but that doesn't work for me, especially because:
- I need a Linux + Windows solution
- I want to be able to clean up artifacts inside the CI/CD pipeline where all this generation happens.
So given I'm only running this command, is there a way to run it so that the host folder (`$PWD above) being mapped to the container, remains in the ownership of the user that launched the command?