Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- unit
- Java
- 탐색
- forkandjoinpool #threadpool #jvm #async #non-blocking
- 서비스스펙
- spring cloud netflix eureka
- BFS
- 설계
- Dynamic Routing
- 단위테스트
- spring cloud netflix zuul
- netflix
- spring cloud netflix
- unittest
- test
- dfs
- netflix eureka
- api-gateway
- java #jvm #reference #gc #strong reference
- container image #docker #layer #filesystem #content addressable
- docker
- zuul
- code refactoring
- microservice architecture
- reactive
- spring cloud
- Spring Data Redis
- Eureka
- springcloud
Archives
- Today
- Total
목록container image #docker #layer #filesystem #content addressable (1)
phantasmicmeans 기술 블로그

Docker에서 Container Image는 layer의 연속이다. 각 레이어는 Dockerfile에서의 각 명령(instruction)을 대표한다. 가장 상단의 layer를 제외하고는 모두 Read Only이다. 갑자기 가장 상단의 layer는 제외하고 Read Only라니 무슨 말인지 이해가 안될 것이다. 이에 대한 설명은 바로 아래에 있다. 1. Container Image, Writable Layer FROM ubuntu:16.04 COPY . /app RUN make /app CMD python /app/app.py 위 Dockerfile은 4개의 command를 가진다. 각 command는 layer를 생성하게 된다. 각 Layer는 stack 처럼 쌓인다. 또한 각 layer는 바로 이전 ..
Docker & Kubernetes/Docker
2019. 10. 26. 20:11