BaeBox

Docker - Stack 본문

개발 관련

Docker - Stack

배모씨. 2019. 10. 23. 17:13
반응형

* Container ⊂ Service ⊂ Stack

the top of the hierarchy of distributed applications: the stack.

배포된 App 들의 최상위계층이다.

A stack is a group of interrelated services that share dependencies, and can be orchestrated and scaled together.

스택은 의존성을 공유하는 상호 연관성있는 서비스들이다. orchestrated(관리) 와 scale(여러개 띄우기) 이 가능하다.

A single stack is capable of defining and coordinating the functionality of an entire application.

하나의 스택은 하나의 어플리케이션을 통째로 정의하고 조정하는 것이 가능하다.

 

내 생각 :  

  서비스(스웜이 관리하는 컨테이너)를 차곡차곡 쌓는 바구니.

 

 

요런 느낌으로다가 (출처 : https://docs.docker.com/get-started/part5/)

 

Stack. Docker mastery 인강에서 퍼옴. 문제시 삭제하겠음

Docker Stack : Service가 스택처럼 쌓여서 스택 인듯?

 

명령어 : 

 

Deploy (배포 : 생성 + 수정)

docker stack deploy -c docker-compose.yml [USER_DEFINE_NAME]

 

 

반응형

'개발 관련' 카테고리의 다른 글

Docker root directory 변경  (0) 2019.10.23
Docker - Service  (0) 2019.10.23
Docker - Docker Swarm  (0) 2019.10.23
Docker - Persistent Data, Data Volumes & Bind Mounting  (0) 2019.10.23
Docker - Dockerfile  (0) 2019.10.23
Comments