[Docker] Docker Compose : 분산 애플리케이션
·
DevOps/Docker & Kubernetes
📕 목차 1. Docker Compose file 구조 2. 여러 Container로 구성된 Application 실행 3. Docker Container 간의 통신 4. Application 설정값 지정 5. 한계 6. 연습 문제 1. Docker Compose file 구조 📌 As-is Dockerfile로 인해 배포가 용이해지긴 했지만, Application의 한 부분을 패키징하는 수단에 불과하다. 가장 흔히 사용되는 3-Tier Architecture of Web Application만 해도 최소 3개의 Container가 필요하다. Presentation Tier : 일반 사용자가 직접 access 할 수 있는 layer Logic Tier : business logic layer Data T..