-
-
Save ezy/c7f3911d0f6a65bbda5c9df568ebfd46 to your computer and use it in GitHub Desktop.
Revisions
-
paneru-rajan revised this gist
Mar 2, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -37,7 +37,7 @@ ``` base=https://github.com/docker/machine/releases/download/v0.15.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo cp /tmp/docker-machine /usr/local/bin/docker-machine docker-machine --version ``` -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,6 +38,8 @@ base=https://github.com/docker/machine/releases/download/v0.15.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo install /tmp/docker-machine /usr/local/bin/docker-machine docker-machine --version ``` 1. Optionally, install command completion for the bash and zsh shell. [Link](https://docs.docker.com/compose/completion/) -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,8 +32,10 @@ 1. Docker-Machine > Change to latest release [Link](https://github.com/docker/machine/releases/) ``` base=https://github.com/docker/machine/releases/download/v0.15.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo install /tmp/docker-machine /usr/local/bin/docker-machine ``` -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,8 @@ 1. Docker-Machine ``` base=https://github.com/docker/machine/releases/download/v0.14.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo install /tmp/docker-machine /usr/local/bin/docker-machine ``` -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 34 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,12 +12,44 @@ > Removing of sudo privilege will work after reboot! 1. Docker-Compose > Pip seems way more easier wich get's latest release as well ``` sudo pip install docker-compose docker-compose --version ``` **or** > Use the latest Compose release number in the download command. [Github](https://github.com/docker/compose/releases) ``` sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose docker-compose --version ``` 1. Docker-Machine ``` base=https://github.com/docker/machine/releases/download/v0.14.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo install /tmp/docker-machine /usr/local/bin/docker-machine ``` 1. Optionally, install command completion for the bash and zsh shell. [Link](https://docs.docker.com/compose/completion/) For **oh-my-zsh** you can add in plugins! File: `~/.zshrc` ``` plugins=( git, docker, docker-compose, docker-machine, django ) ``` 1. Java ``` -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ 1. Docker [Link](https://docs.docker.com/install/linux/docker-ce/ubuntu/) ``` curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh sudo groupadd docker sudo usermod -aG docker $USER -
paneru-rajan revised this gist
Jul 24, 2018 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,16 @@ ## List of Different application installation method 1. Docker [Link](https://docs.docker.com/install/linux/docker-ce/ubuntu/) ``` curl -fsSL get.docker.com -o get-docker.sh sudo sh get-docker.sh sudo groupadd docker sudo usermod -aG docker $USER ``` > Always examine scripts downloaded from the internet before running them locally. > Removing of sudo privilege will work after reboot! 1. Docker-Compose using pip -
paneru-rajan revised this gist
Jul 20, 2018 . No changes.There are no files selected for viewing
-
paneru-rajan revised this gist
Jul 20, 2018 . 1 changed file with 7 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,18 +14,20 @@ ``` sudo pip install docker-compose ``` 1. Java ``` sudo apt install default-jdk -y ``` 1. Elastic Search ``` docker pull docker.elastic.co/elasticsearch/elasticsearch:6.2.4 docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.2.4 ``` 1. NodeJs -
paneru-rajan revised this gist
Jul 20, 2018 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,9 +4,11 @@ ``` sudo apt install docker.io -y sudo groupadd docker sudo usermod -aG docker $USER ``` > removing of sudo privilege will work after reboot! 1. Docker-Compose using pip ``` -
paneru-rajan revised this gist
Jul 20, 2018 . 1 changed file with 8 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,27 +1,32 @@ ## List of Different application installation method 1. Docker ``` sudo apt install docker.io -y sudo usermod -aG docker your-user ``` 1. Docker-Compose using pip ``` sudo pip install docker-compose ``` 1. Elastic Search ``` docker pull docker.elastic.co/elasticsearch/elasticsearch:6.2.4 ``` 1. Java ``` sudo apt install default-jdk -y ``` 1. NodeJs ``` curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - sudo apt-get install -y nodejs -
paneru-rajan revised this gist
Jul 20, 2018 . 1 changed file with 10 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,16 @@ sudo pip install docker-compose ``` 1. Elastic Search ``` docker pull docker.elastic.co/elasticsearch/elasticsearch:6.2.4 ``` 1. Java ``` sudo apt install default-jdk -y ``` 1. NodeJs ``` curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - -
paneru-rajan revised this gist
Jul 20, 2018 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,11 @@ ## List of Different application installation method 1. Docker ``` sudo apt install docker.io -y sudo usermod -aG docker your-user ``` 1. Docker-Compose using pip ``` sudo pip install docker-compose -
paneru-rajan revised this gist
Jun 20, 2018 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,9 @@ ``` sudo pip install docker-compose ``` 1. NodeJs ``` curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - sudo apt-get install -y nodejs ``` -
paneru-rajan created this gist
Jun 4, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ ## List of Different application installation method 1. Docker-Compose using pip ``` sudo pip install docker-compose ```