Code Monkey home page Code Monkey logo

dockerapps's Introduction

Dockerapps

Docker-compose files to setup services/apps like database, redis, rabbtimq and more.

Installing Docker

Ubuntu, Mint

Uninstall old versions:

sudo apt-get remove docker docker-engine docker.io containerd runc

Update package index

sudo apt-get update

Install packages to allow apt to use a repository over HTTPS:

sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common

Add Docker’s official GPG key:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Set up the stable repository for your system:

  • Ubuntu 18.04/Mint 19, 19.1 and 19.2
sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   bionic \
   stable"

Update package index:

sudo apt-get update

Install the latest version of Docker Engine

sudo apt-get install docker-ce docker-ce-cli containerd.io

Verify that Docker Engine:

sudo docker run hello-world

Create the docker group:

sudo groupadd docker

Add your user to the docker group:

sudo usermod -aG docker $USER

Log out and back, or, in linux, activate the changes:

newgrp docker

Verify you can run docker commands without sudo:

docker run hello-world

Get current stable version of composer:

sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

Applly executable permissions:

sudo chmod +x /usr/local/bin/docker-compose

Test installation:

docker-compose --version

dockerapps's People

Contributors

marcosbaesse avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

dockerapps's Issues

Separar aplicações de acordo com grupos

Conforme comentado no PR #2 , seria interessante pensar em uma estrutura de pastas para organizar melhor o tipo de aplicação, ex: database, programming-languages, tools... podemos seguir colocando sugestoes aqui e durante a semana abrir um pr para organizar o projeto

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.