DEV Community

Discussion on: Using Docker for Node.js in Development and Production

Collapse
 
pojntfx profile image
Felicitas Pojtinger

If someone gets the following error on a SELinux-enabled machine (such as Fedora GNU/Linux):

Error: EACCES: permission denied, scandir '/usr/src/app'
example-service_1 | (node:1) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'get' of undefined

change this:

      - .:/usr/src/app

to this:

      - .:/usr/src/app:z

This took some time to figure out, be sure to thank Stack Overflow ;)

Collapse
 
bcrisp4 profile image
Ben

Oh. My. God.

Thank you. I was close to literally pulling my hair out.