Skip to content

Instantly share code, notes, and snippets.

@ezy
Forked from paneru-rajan/installation.md
Created April 19, 2020 20:52
Show Gist options
  • Select an option

  • Save ezy/c7f3911d0f6a65bbda5c9df568ebfd46 to your computer and use it in GitHub Desktop.

Select an option

Save ezy/c7f3911d0f6a65bbda5c9df568ebfd46 to your computer and use it in GitHub Desktop.

Revisions

  1. @paneru-rajan paneru-rajan revised this gist Mar 2, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion installation.md
    Original 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 install /tmp/docker-machine /usr/local/bin/docker-machine
    sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
    docker-machine --version
    ```
  2. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions installation.md
    Original 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/)
  3. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion installation.md
    Original 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.14.0 &&
    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
    ```
  4. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion installation.md
    Original 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 &&
    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
    ```
  5. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 34 additions and 2 deletions.
    36 changes: 34 additions & 2 deletions installation.md
    Original file line number Diff line number Diff line change
    @@ -12,12 +12,44 @@
    > Removing of sudo privilege will work after reboot!
    1. Docker-Compose using pip
    1. Docker-Compose
    > Pip seems way more easier wich get's latest release as well
    ```
    sudo pip install docker-compose
    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
    ```
  6. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion installation.md
    Original 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 get.docker.com -o get-docker.sh
    curl -fsSL https://get.docker.com -o get-docker.sh
    sudo sh get-docker.sh
    sudo groupadd docker
    sudo usermod -aG docker $USER
  7. @paneru-rajan paneru-rajan revised this gist Jul 24, 2018. 1 changed file with 6 additions and 3 deletions.
    9 changes: 6 additions & 3 deletions installation.md
    Original file line number Diff line number Diff line change
    @@ -1,13 +1,16 @@
    ## List of Different application installation method

    1. Docker
    1. Docker [Link](https://docs.docker.com/install/linux/docker-ce/ubuntu/)

    ```
    sudo apt install docker.io -y
    curl -fsSL get.docker.com -o get-docker.sh
    sudo sh get-docker.sh
    sudo groupadd docker
    sudo usermod -aG docker $USER
    ```
    > removing of sudo privilege will work after reboot!
    > Always examine scripts downloaded from the internet before running them locally.
    > Removing of sudo privilege will work after reboot!
    1. Docker-Compose using pip
  8. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. No changes.
  9. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. 1 changed file with 7 additions and 5 deletions.
    12 changes: 7 additions & 5 deletions installation.md
    Original 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. Java
    ```
    sudo apt install default-jdk -y
    ```
    1. NodeJs
  10. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions installation.md
    Original file line number Diff line number Diff line change
    @@ -4,9 +4,11 @@

    ```
    sudo apt install docker.io -y
    sudo usermod -aG docker your-user
    sudo groupadd docker
    sudo usermod -aG docker $USER
    ```
    > removing of sudo privilege will work after reboot!
    1. Docker-Compose using pip
    ```
  11. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. 1 changed file with 8 additions and 3 deletions.
    11 changes: 8 additions & 3 deletions installation.md
    Original 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 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
  12. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. 1 changed file with 10 additions and 0 deletions.
    10 changes: 10 additions & 0 deletions installation.md
    Original 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 -
  13. @paneru-rajan paneru-rajan revised this gist Jul 20, 2018. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions installation.md
    Original 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
  14. @paneru-rajan paneru-rajan revised this gist Jun 20, 2018. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion installation.md
    Original 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
    ```
  15. @paneru-rajan paneru-rajan created this gist Jun 4, 2018.
    7 changes: 7 additions & 0 deletions installation.md
    Original 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
    ```