Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fukata/docker-image-h2o-php
Docker Image of h2o(ssl+mruby) + php7
https://github.com/fukata/docker-image-h2o-php
Last synced: 29 days ago
JSON representation
Docker Image of h2o(ssl+mruby) + php7
- Host: GitHub
- URL: https://github.com/fukata/docker-image-h2o-php
- Owner: fukata
- Created: 2016-12-22T17:59:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-01-02T12:22:49.000Z (almost 4 years ago)
- Last Synced: 2024-10-10T12:33:45.763Z (about 1 month ago)
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-image-h2o-php
----## What's this
docker image of h2o(ssl,mruby) with php7.3.6 on alpine:3.9.4.
## Example
```bash
$ docker pull fukata/h2o-php
$ docker run -p 18080:80 fukata/h2o-php
start_server (pid:1) starting now...
starting new worker 7
[INFO] raised RLIMIT_NOFILE to 1048576
h2o server (pid:7) is ready to serve requests$ curl http://127.0.0.1:18080/index.html
Hello h2o on docker
Hello h2o on docker
$ curl -i http://127.0.0.1:18080/mruby
HTTP/1.1 200 OK
Date: Thu, 22 Dec 2016 20:35:44 GMT
Connection: keep-alive
Content-Length: 27
Server: h2o/2.1.0-beta4
content-type: text/plainHello h2o(mruby) on docker
$ curl http://127.0.0.1:18080/phpinfo.php
...phpinfo...
```## Build on local
```
$ docker build .
```