25
loading...
This website collects cookies to deliver better user experience
Dockerfile
docker-compose up
, which then starts building the application image, installing hundreds of dependencies needed for the applicationlocalhost:8080
. Great, you check it and start codingdocker-compose up
again and that's where you face your worst nightmare: it will install all the dependencies over and over again, at every time you start up the server. node hello_world.js
docker run node hello_world.js
docker run node:10 hello_world.js
docker run node:12 hello_world.js
docker CLI
heavily. Suffer. Feel the pain on the command-line. 25