Advertisement
Advertisement

More Related Content

Advertisement
Advertisement

Docker 101 - Getting started

  1. DOCKER GETTING STARTED WITH
  2. AGENDA ● WHAT IS DOCKER? ● HOW DO I USE IT? ● HANDS ON!
  3. WHAT IS DOCKER?
  4. Docker is the world’s leading software container platform. Developers use Docker to eliminate “works on my machine” problems when collaborating on code with co-workers. https://www.docker.com/what-docker
  5. ● EASY TO INSTALL ● ABILITY TO COMPOSE COMPLEX APPS ● MULTIPLE ENVIRONMENTS WHY SHOULD YOU CARE?
  6. INFRASTRUCTURE WAS A BIT COMPLICATED ...
  7. ++ SERVER
  8. THERE'S STILL A PROBLEM ...
  9. DOCKER != VIRTUAL MACHINE
  10. https://www.redhat.com/pt-br/containers/whats-a-linux-container
  11. https://www.redhat.com/pt-br/containers/whats-a-linux-container
  12. https://www.redhat.com/pt-br/containers/whats-a-linux-container
  13. https://medium.freecodecamp.com/a-beginner-friendly-introduction-to-containers-vms-and-docker-79a9e3e119b
  14. HOW DO I USE IT?
  15. MAC OS
  16. LINUX
  17. $ sudo apt-get update $ sudo apt-get install docker-ce
  18. $ docker info CHECKING IF EVERYTHING WENT OK
  19. HANDS ON!
Advertisement