INTRO
NOTE : Pre-requisite is to have ubuntu 16.04
Following
DIGITAL OCEAN
tutorial for same ... it worked for me on multiple machines
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04
Lets start by insalling DOCKER
INSTALLATION COMMANDS :
1 2 3 4 5 6 |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" sudo apt-get update apt-cache policy docker-ce sudo apt-get install -y docker-ce sudo systemctl status docker |
FIND, DOWNLOAD & RUN a relevant DOCKER image :
1 2 3 4 |
docker search phonegap docker pull geekyhouse/phonegap-android-starter docker images -a docker run -i -t geekyhouse/phonegap-android-starter /bin/bash |