목록2025/05/27 (1)
MJ's Blog
Dockerfile 작성 연습
# nginx 1.27.5를 베이스 이미지로 사용FROM nginx:1.27.5# 로컬의 index.html 파일을 컨테이너의 nginx html 디렉토리로 복사COPY index.html /usr/share/nginx/html/index.html# nginx는 기본적으로 80포트에서 실행됨EXPOSE 80 FROM nginx:1.27.5 FROM: "이 이미지를 기반으로 시작하겠다"는 의미nginx:1.27.5: 이미 만들어진 nginx 웹서버 이미지 (버전 1.27.5) COPY index.html /usr/share/nginx/html/index.html COPY: "파일을 복사하겠다"는 의미index.html: 내 컴퓨터(로컬)에 있는 파일/usr/share/nginx/html/index.html..
IT
2025. 5. 27. 01:10