#docker #kubernetes #container #orchestrator #microservice #infrastructure-as-code #devops #ci #cd

제목[Q&A]도커파일로 우분투에 파일을 만들기2019-12-12 19:31
작성자

1. 도커파일 만들기

sample.txt 에 아래의 내용 적음

#이미지의 바탕이 될 베이스 이미지 지정. FROM ubuntu:latest #이미지로 실행된 컨테이너 안에서 실행할 명령 RUN mkdir /donghyunDir //우분투에 donghyunDir이라는 폴더를 생성하라 #echo하라 RUN echo "hello,donghyun" //이미지를 만들어낼 때 한번만 실행됨.

파일명 sample.txt -> dockerfile 로 수정

2. 이미지 빌드

도커파일을 저장한 디렉토리로 이동

c/Program Files/Docker Toolbox/myfile/image3

이미지 빌드

$ docker image build -t example .

3. 빌드결과

step 1/3 : 우분투 pull

step 2/3 : 디렉토리 생성 (/donghyunDir)

step 3/3 : "hell, donghyun"

이미지 리스트에 추가된것이 확인됨

4. 컨테이너 생성, 생성된 디렉토리 확인

donghyunDir 이라는 디렉토리가 생성된것을 확인할 수 있다.

댓글
이전[Q&A] curl 명령어가 동작하지않을때2019-12-12
다음[Q&A] HTML 적용시키기 2019-12-12