Are you using Vagrant for your application development locally? Do you often encounter situations in which you are forced to destroy vagrant machine and create it again? Then this blog is for you. It is often the situation that you will be using an operating system as base box from Vagrant Atlas and will be installingContinue reading “How to save and reuse a vagrant machine as vagrant box?”
Tag Archives: docker
3 ways to have Nodejs in Docker
Use official Nodejs image FROM node:0.10.38 Use chrislea’s PPA FROM ubuntu:14.04 RUN apt-get install -y software-properties-common RUN apt-add-repository ppa:chris-lea/node.js RUN apt-get update RUN apt-get install -y nodejs Use curl FROM ubuntu:14.04 RUN apt-get install -y curl software-properties-common RUN mkdir /nodejs && curl http://nodejs.org/dist/v0.10.38/node-v0.10.38-linux-x64.tar.gz | tar xvzf – -C /nodejs –strip-components=1 ENV PATH $PATH:/nodejs/bin