Skip to content

Commit 6bde86e

Browse files
committed
250520
1 parent c6402fd commit 6bde86e

File tree

3 files changed

+781
-0
lines changed

3 files changed

+781
-0
lines changed

programming/250520/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# base 이미지: nginx
2+
FROM nginx
3+
4+
# index.html을 Nginx 기본 경로로 복사
5+
COPY ./nginx/index.html /usr/share/nginx/html/index.html
6+
7+
# 포트 노출
8+
EXPOSE 80
9+
10+
# nginx 실행
11+
CMD ["nginx", "-g", "daemon off;"]

programming/250520/nginx/ex.md

Whitespace-only changes.

0 commit comments

Comments
 (0)