저 많은 사람 중에 '나'
    Docker 맛보기

    Docker 맛보기

    Docker DeskTop 설치하고 실행을 해준다. Visual Studio Code 를 사용한다면 Docker Extension을 설치하면 문법에 대한 도움을 받을 수 있다. Index.js 다음과 같이 정말 간단한 node.js 파일이 구현되어있다. const express = require("express"); const app = express(); app.get("/", (req, res) => { res.send("Dream Coding in Docker!"); }); app.listen(8080, () => console.log("Server is running")); 컨테이너 만들기 이제 위 파일을 컨테이너로 만들어보자! 첫번째로 해야할 것은 바로 docker file을 만드는 것이다. d..