Managing Deployments Using Kubernetes Engine
의 선행으로 Introduction to Docker, Hello Node Kubernetes
docker build -t node-app:0.1 .
Dockerfile 이라고 저장해야 되는데 DockerFile 이라고 저장했어서 Dockerfile을 찾을 수 없다는 메시지가 나왔던 것.
같은 실수
https://blusky10.tistory.com/327
오류 발생2:
server.listen(port, hostname, () => {
^
ReferenceError: hostname is not defined
at Object. (/app/app.js:10:21)
at Module._compile (module.js:577:32)
at Object.Module._extensions..js (module.js:586:10)
at Module.load (module.js:494:32)
at tryModuleLoad (module.js:453:12)
at Function.Module._load (module.js:445:3)
at Module.runMain (module.js:611:10)
at run (bootstrap_node.js:394:7)
at startup (bootstrap_node.js:160:9)
at bootstrap_node.js:507:3
알고 보니 app.js 에서
const hostname = '0.0.0.0'; 을 안 써준 것.,
그리고 오류가 나도 실행이 되었기 때문에
docker: Error response from daemon: Conflict. The container name "/my-app" is already in use by container "d8ecfe97e3e9c988f8dda60c34ce8a36302b33261a2bd999a4aefdaf7ba66313". You have to remove (or rename) that container to be able to reuse tha
t name.
이런 오류가 뜨게 된다.
docker rm my-app
이라는 명령어로 지워주고,
docker build -t node-app:0.1 .
이렇게 빌드부터 다시 해주면 된다!
잘못된 js 로 빌드되었던 거니까!
다 해보니 1시간 30분정도 소요됨!
'개발' 카테고리의 다른 글
flutter vscode 로 build (0) | 2020.01.27 |
---|---|
install tensorflow on mac using virtualenv (0) | 2019.11.19 |
ML #1 - 단기집중과정 : ML 개념 1 (0) | 2019.07.14 |
flutter #4 tutorial 3 아름다운 UI 짓기 (0) | 2019.01.25 |
flutter #3 tutorial 2 하트 만들기 (0) | 2019.01.24 |