그냥 조그마한 Docker 이미지예요.

1059 단어 PHPDocker
나는 시험에서 서브하는 이미지를 사용하고 싶어서 썼다.
Dockerfile
FROM php:7
WORKDIR /myapp
ADD index.php /myapp/index.php
CMD php -S 0.0.0.0:7788
CMD php -S localhost:7788라고 쓰여 있는데 잠깐 푹 빠졌어요.😓
index.php
<html>
  <body>
    kuririn
  </body>
</html>

$ tree
.
├── Dockerfile
└── index.php
무슨 지령localhost:7766을 내리면 방문할 수 있습니다.
Command
$ docker build --tag php-sample .
$ docker run -d -p 7766:7788 php-sample
그게 다야.😬

좋은 웹페이지 즐겨찾기