반응형
Docker
Ubuntu 환경에서 Docker 명령어 사용하기
Ubuntu 20.04.4 LTS 환경으로 테스트 진행
Dockerfile을 생성하여 파일을 docker build 하려고 할 때 아래와 같은 에러가 발생합니다.
원인을 몰라 한참 찾아봤었는데 처음에는 뭐가 문제인지 잘몰랐었는데 Dockerfile을 만들어서
build 해줄 때 filename을 Dockerfile 이라고 만들어줘야 하는 거였다.
Dockerfile을 만들때에는 디렉토리를 새로만들고 해당 디렉토리로 들어가서 build 해줘야한다.
나는 바보인가보다 ㅠ
unable to prepare context: unable to evaluate symlinks in Dockerfile path:
$ sudo docker build -t kubers:1 .
unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/djwlstn123/k8s/Dockerfile: no such file or directory
EX)
$ sudo docker build -t kuard-amd64:1 .
Sending build context to Docker daemon 2.048kB
Step 1/3 : FROM alpine
반응형
'Kubernetes > Docker' 카테고리의 다른 글
[Docker] 도커 sudo 입력 없이 명령 설정 (0) | 2022.10.24 |
---|---|
[Docker] Error response from daemon 해결 방법 (0) | 2022.10.17 |
[Docker] 컨테이너간 통신 설정하기 (0) | 2022.06.05 |
[Docker] registry pull 오류 "Error response from daemon" (0) | 2022.06.05 |
[Docker] insecure-registry 구성 및 설정 (0) | 2022.06.05 |