Docker: Files from volume not updated in target
问题 I'm newbie in Docker and I have created an image with this Dockerfile: FROM node:8.12.0 LABEL version="1.0" WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . EXPOSE 8080 CMD ["node", "index.js"] I run the image and it works. But If I run the image mapping host directory with WORKDIR when I update index.js in host directory this updating is not propagated into WORKDIR. I run the image with this command: docker run --name basketmetrics -v /home/josecarlos/Workspace/nodejs