Nothing here yet.
Nothing here yet.
No blogs yet.
depends what you wanna do. for example if you simply want to run a command line inside the container while having your code shared inside then you can simplify the docker file they suggested down to: FROM node:boron RUN mkdir -p /usr/src/app WORKDIR /usr/src/app COPY package.json /usr/src/app/ RUN npm install EXPOSE 8080 build it (as they suggested) and run it with: docker run -p 49160 : 8080 -v $(pwd) :/usr/src/app -it <your username> /node-web-app bash notice i have: removed the -d added -v for sharing our current folder with the container workfolder added -it for interactive mode and added bash as the command we run with this you will end up with bash inside your container ready to launch app now just type npm start as you were on your own local dev env...
For everything you mentioned that is missing (readme, diagrams, wiki...) i would volunteer to create When you need to explain / document how a system works, it makes you understand all parts