Docker 가 Nginx 용 기 를 자동 으로 실행 합 니 다.

1184 단어
Dockerfile 파일 은 다음 과 같 습 니 다.
FROM ubuntu #    
RUN apt-get update #  apt
RUN apt-get -y install nginx #  nginx
VOLUME ["data"] #  ,    
EXPOSE 80 #  80  
CMD nginx -g "daemon off;" #    nginx  ,        

미 러 구축: sudo docker build -t ubun/nginx . 지정 한 이름 은 ubun / nginx 입 니 다. 현재 디 렉 터 리 에서 Dockerfile 을 검색 합 니 다.
실행 용기: docker run -d --name nginx -p 80:80 ubun/nginx 로 컬 80 포트 를 용기 의 80 포트 에 연결 합 니 다.
테스트: curl 127.0.0.1다음 내용 을 되 돌려 주면 성공:



Welcome to nginx!



Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

좋은 웹페이지 즐겨찾기