docker cp를 이용해 nginx index를 바꿔보자

yk hi·2021년 8월 5일
0

docker

목록 보기
6/16

개발팀에서 nginx 기반 웹서버 테스트 요청
-> 전달 받은 웹소스를 컨테이너에 넣고 테스트

nginx는 web application container이다

용도
1) web server(default)

2) proxy -> ALB(L7), nginx.conf =====> cloud(vm, container)

A.nginx 기반의 컨테이너를 한번 만들어보자
docker run -it -d -p 8001:80 --name=webserver1 nginx:1.21.1

B.컨테이너가 제대로 동작하는지 확인
curl localhost:8001

C.원하는 이미지 세팅

docker cp index.html webserver1:/usr/shared/nginx/html/index.html
docker cp docker_logo.png webserver1:/usr/shared/nginx/html/docker_logo.png

docker의 cp 기능을 이용하여 현재 리눅스에서 컨테이너에 원하는 위치에 파일을 복사할 수 있다

docker_logo.png 이미지

index.html

<html>
 <head>
  <title>Docker Container App</title>
   <style>body {margin-top: 40px; background-color: #87CEEB; background-image: url("docker_logo.png");}
   </style>
 </head>
 <body>
  <div style=color:black;text-align:center>
   <h1> Docker Container Sample Application. </h1>
   <h2> Welcome to Container world! </h2>
    <p>Your application is now running on a container in Docker Container.</p>
  </div>
 </body>
</html>

다시 192.168.56.201에 접속하면

짜잔 다음과 같이 설정한 index.html이 나타난다!!

profile
엔지니어의 실력은 고통의 총합이다 <임백준 칼럼>

0개의 댓글

관련 채용 정보