For further actions, you may consider blocking this person and/or reporting abuse
Read next
Framework Lithe: Projetos incríveis feitos com ele!
Lithe -
Ever save a LinkedIn post thinking, “I’ll get back to this later,” but totally forget?
Aya Ragab -
How to write elegant code 1: Keep the chain of event calls short
code plato -
MBA em Desenvolvimento de Software Avançado com foco em Ruby on Rails
Alexandre Calaça -
Top comments (1)
I started a RoR project. I use docker to easily install what I need (database, external tools...). In the root of my project, I've got a data folder containing all the docker volumes. The issue is when I run rails generate controller X, I don't know why but rails wants to access to the data folder (which is completely useless) and so, I have a permission denied for the data folder;
Any idea to avoid that unless changing the folder's permissions ? I don't want to break my containers.