【Docker】 로컬 환경에서 Nginx가 움직이는 최소 구성을 만든다
전제
파일 구성
다음 구성으로 2개의 파일을 만듭니다.
├── docker-compose.yml
└── public
└── index.html
각 파일의 소스는 다음과 같이 설정됩니다.
docker-compose.yml
version: '3'
services:
nginx:
image: nginx:latest
ports:
- 8080:80
volumes:
- ./public:/usr/share/nginx/html
index.html
<h1>Hello world!</h1>
Docker 시작
$ docker-compose up
http://localhost:8080 에 브라우저로 접속하면 무사히
Hello world!
가 표시되었습니다.참고
Reference
이 문제에 관하여(【Docker】 로컬 환경에서 Nginx가 움직이는 최소 구성을 만든다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ohbashunsuke/items/05aa2403f86a792a46ff텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)