# 1. 웹사이트 컨테이너 실행
docker container run -dp 8080:80 diamol/ch02-hello-diamol-web
# 2. 컨테이너 ID 확인
docker ps
# 3. 교체할 파일 확인
docker exec c3dad9007896 ls /usr/local/apache2/htdocs
# 4. 교체 파일 생성
cat > index.html
# 5, 교체
docker container cp index.html c3dad9007896:/usr/local/apache2/htdocs/index.html