Skip to content
yona on air
Go back

[Docker] Get Started

Updated:
Edit page

Docker is a platform. It composes an environment of the application and makes the environment into a form of container. So when someone uses this container, others can use the application in the same way. i.e. they don’t have to install the various dependencies or check the structure for every local or other environments even in distribution.

Docker

Introduction

Docker’s container-based platform

Object

1. consistent delivery of the applications

2. Responsive deployment and scaling

3. Running more workloads on the same hardware

Docker architecture

Docker Architecture diagram출처

  1. a client-server architecture

    1. The Docker client talks to the Docker daemon

      • The Docker client and daemon can run on the same system

      • A Docker client can be connected to a remote Docker daemon

    2. The Docker client and daemon communicate using a REST API over UNIX sockets or a network interface

    3. Docker Compose lets working with applications consisting of a set of containers .


Edit page
Share this post on:

Previous Post
Linux Fundamentals (1)
Next Post
AWS EC2로 실시간 채팅 앱 배포하기 (2)