docker_practice/appendix/repo/php.md
2018-12-31 09:25:33 +08:00

20 lines
656 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## [PHP](https://hub.docker.com/_/php/)
### 基本信息
[PHP](https://en.wikipedia.org/wiki/php) PHP“PHP: Hypertext Preprocessor”超文本预处理器的字母缩写是一种被广泛应用的开放源代码的多用途脚本语言它可嵌入到 HTML 中,尤其适合 web 开发。
该仓库位于 `https://hub.docker.com/_/php/` ,提供了 PHP 5.x ~ 7.x 各个版本的镜像。
### 使用方法
下面的命令将运行一个已有的 PHP 脚本。
```bash
$ docker run -it --rm -v "$PWD":/app -w /app php:alpine php your-script.php
```
### Dockerfile
请到 https://github.com/docker-library/docs/tree/master/php 查看。