dockerfile 예제 및 주석
############################################################
# Dockerfile to build Nginx Installed Containers
# Based on Ubuntu
############################################################
# Set the base image to Ubuntu
FROM ubuntu
# File Author / Maintainer
MAINTAINER Maintaner Name
# Install Nginx
4
# Add application repository URL to the default sources
#
기본 소스에 응용 프로그램 라이브러리 URL 추가RUN echo "deb http://archive.ubuntu.com/ubuntu/ raring main universe" >> /etc/apt/sources.list
# Update the repository
#
RUN apt-get update
# Install necessary tools
#
RUN apt-get install -y nano wget dialog net-tools
# Download and Install Nginx
# Nginx
RUN apt-get install -y nginx
# Remove the default Nginx configuration file
# nginx
RUN rm -v /etc/nginx/nginx.conf
# Copy a configuration file from the current directory
#
ADD nginx.conf /etc/nginx/
# Append "daemon off;" to the beginning of the configuration
#
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
# Expose ports
#
EXPOSE 80
# Set the default command to execute
#
# when creating a new container
#
CMD service nginx start
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
요구사항 정의요구사항 정의 작성 방법 개요 ・목적 표시되고 있는 텍스트를 가변으로 한다 · 과제 표시된 텍스트가 변경되지 않음 ・해결 표시되고 있는 텍스트가 가변이 된다 사양 · 표시 정의 각 편집 화면 ○○ 표시되고 있는 텍스...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.