Docker - Docker image 빌드시 Dockerfile이 아닌 커스텀한 dockerfile명을 이용할때
Dockerfile 파일이 아니라, 커스텀한 파일명으로 docker manifest를 작성하였을 때, 로컬 빌드하는 명령이다. Dockerfile로 작성되어 있을 때 로컬빌드 명령은 아래와 같다.
docker build -t 1223yys/web-project:latest .
만약 Dockerfile이 아닌 다른 파일명으로 image manifest를 작성하였을 때는 아래와 같다.
docker build -t 1223yys/web-project -f ./custom_file_name .
위 명령을 실행한 후에 이미지가 잘 빌드되었는지 확인해보자.
docker image ls
출처: https://coding-start.tistory.com/341?category=761720 [코딩스타트]
'컨테이너 > docker' 카테고리의 다른 글
Docker - 도커 이미지 만들기 ! (Dockerfile) (0) | 2021.04.26 |
---|---|
Docker - 도커를 이용해 Single node Kafka 띄우기 (0) | 2021.04.25 |
Docker - DOOD로 띄웠을 경우 proxy(프록시) 설정 (0) | 2021.04.25 |
Docker - Docker 다른 레포지토리에 push하기 (0) | 2021.04.25 |
Docker - Docker로 MongoDB 설치하기. (0) | 2021.04.25 |
Docker - docker oracle11g 설치 (0) | 2021.04.25 |
[Docker] nginx + spring-boot 연동 (0) | 2020.09.08 |
[Docker] 활용 사례 (1) | 2020.09.08 |