Docker birthday 3
Mar 23, 2016
1 minute read

Hello It’s Docker’s year 3 :D, celebrations everywhere.

We @ Casablanca, had a Docker session by @SamuelTerburg.

Special thanks to him, and to the guys behind the event.

Quick notes.

Docker Component:

  • Docker Image should contains all dependencies.
  • Docker container => secure, (Bundle the Docker image)
  • Docker Engine run the Docker container.

Docker services:

  • Docker Swarm: Orchestrator to manage Docker container in a cluster.

Docker power:

  • Isolation.
  • Dependencies.
  • Security
  • Speed.
  • Portability.
  • Performance.

Docker commands:

docker images

docker ps

docker run image_name

docker run alpine sh

docker run -d alpine sh #run the container as a daemon

docker ps -a #List docker images

docker log sharp_banach

docker stop image_name

docker run -R image_name

docker run --name static-site-2 -e AUTHOR="Elhoucine" -d -p 8888:80 seqvence/static-site

TUTORIAL


Back to posts