Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
more
Archives
Today
Total
관리 메뉴

ufris

docker container를 image로 생성 본문

리눅스

docker container를 image로 생성

ufris 2024. 1. 10. 15:28

기본 ubuntu docker image를 통해 container를 만들어 apt를 설치하고 세팅을 설정한 다음

 

동일한 ubuntu docker로 container를 만들면 똑같은 세팅을 반복해야합니다

(가장 기본적인 wget, vim, net-tools 등등)

 

이러한 반복 작업을 하지 않기 위해서 docker container를 docker image로 만들어서 관리하면 편합니다

 

$ docker ps -a 를 통해 image로 만들 container의 container ID 를 확인합니다

 

$ docker commit f836f7b23461(=CONTAINER ID) jupyter(=image 이름)

를 통해 container를 image로 만듭니다

 

$ docker images 를 통해 확인 가능합니다