도커를 이용한 컨테이너 이미지 생성,실행,공유하기 도커 설치 docker download 사용하는 운영체제에 맞게 설치. 간단한 Node 어플리케이션 작성 작업할 폴더를 하다 생성하여 app.js안에 아래의 코드를 작성. { const http = require('http'); const os = require('os'); console.log("Kubia server starting..."); var handler = function(request, response){ console.log("Received request from " + request.connection.remoteAddress); response.writeHead(200); response.end("You've hit " + os.h..