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 | 31 |
Tags
- Dynamic Routing
- container image #docker #layer #filesystem #content addressable
- java #jvm #reference #gc #strong reference
- microservice architecture
- Spring Data Redis
- unittest
- test
- 설계
- spring cloud netflix
- springcloud
- netflix eureka
- code refactoring
- 단위테스트
- Java
- 서비스스펙
- 탐색
- docker
- spring cloud netflix zuul
- unit
- netflix
- spring cloud
- forkandjoinpool #threadpool #jvm #async #non-blocking
- spring cloud netflix eureka
- dfs
- zuul
- Eureka
- reactive
- BFS
- api-gateway
Archives
- Today
- Total
목록container image #docker #layer #filesystem #content addressable (1)
phantasmicmeans 기술 블로그
Docker Container Image에 대한 고찰
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