Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Docker in the cloud - ForLoop Abuja

Docker in the cloud - ForLoop Abuja

I introduced my audience to Docker in the cloud at Forloop Abuja on 22nd April 2017

Socials: https://twitter.com/forLoopAbuja/status/855766987108122625

Stanley Ndagi

April 22, 2017
Tweet

More Decks by Stanley Ndagi

Other Decks in Technology

Transcript

  1. Mission: - Understand Docker - Dealing with a Simple Web

    App - Adding Docker to development & deployment workflow
  2. The problem It’s common to hear this “It is working

    locally” “I have issues deploying ...” “It is working on my machine but I’m having trouble helping Maman set it up”
  3. Setup Docker Engine Docker Machine Mac Windows Linux Amazon AWS

    Azure Windows Server Docker is installable on:
  4. How it works Build Dockerfile docker-compose.yml $ docker build -t

    <image-name> . Ship Docker Hub $ docker login $ docker push A B DOCKER HUB (released 2014): - Workflow automation - Integration - Organisation (Teamwork) Under the covers > Faster download speeds
  5. How it works Build Dockerfile docker-compose.yml $ docker build -t

    <image-name> . Ship Dockerhub $ docker login $ docker push Run Docker environment $ docker run <image-name> A B C