1 ## HTTP2 Webserver with PHP7 Support
3 A [Docker](http://docker.com) image for [Caddy](http://apache.org) based on [Alpine Linux](https://alpinelinux.org/)
9 sudo docker build -t http2-php .
17 sudo docker run -d -p 80:80 -P --name test_http2-php http2-php
23 Open browser and point to: http://localhost
26 If everthing is fine you should see the PHP Test Page.
30 Replace /path/to/php/src with your php sources directory.
33 $ docker run -d -v /path/to/php/src:/srv -p 80:80 ricardson/docker-http2-php
40 sudo docker stop test_http2-php
42 sudo docker rm test_http2-php
44 sudo docker rmi http2-php