Infra/Kubernetes&OCP7 Dockerfile 로 apache Deployment 배포하기 시작하기전 ... Dockerfile 이란? Dockerfile 은 컨테이너 이미지를 빌드하는 방법에 대한 명령이 포함되고 이름이 Containerfile 또는 Dockerfile인 텍스트 파일입니다. Dockerfile의 기본 구문은 다음과 같습니다. FROM ubi8/ubi:8.3 LABEL description="This is a custom httpd container image" MAINTAINER John Doe RUN yum install -y httpd EXPOSE 80 ENV LogLevel "info" ADD http://someserver.com/filename.pdf /var/www/html COPY ./src/ /var/www/html/ USER apache ENTRYPOINT [.. Infra/Kubernetes&OCP 2022. 2. 7. 더보기 ›› 이전 1 ··· 3 4 5 6 7 다음