[Docker] 예제로 시작하기
1. Docker 설치하기 우선 Docker를 설치합니다. Docker 공식 홈페이지에서 운영체제에 맞는 Docker를 다운로드하고 설치합니다. Docker: Accelerated, Containerized Application Development Docker is a platform designed to help developers build, share, and run modern applications. We handle the tedious setup, so you can focus on the code. www.docker.com 2. Docker 이미지 생성하기 예제로 nginx 웹 서버 이미지를 생성해보겠습니다. 다음과 같은 내용으로 Dockerfile이라는 파일을 생성합니다. FROM n..