fix the url
[dockerfiles.git] / caddy-php71 / README.md
blob117dcec27c6054bc903bccbec0b28cab7932d825
1 ## Caddy Webserver with PHP7.1 Support
3 A [Docker](http://docker.com) image for [Caddy](http://caddyserver.com) based on [Alpine Linux](https://alpinelinux.org/)
6 ## Build the image
8 ```sh
10 $ sudo docker-compose build
11 ```
13 ## Run the image
15 ```sh
16 $ sudo docker-compose up -d 
17 ```
19 ## How to test?
21 Open browser and point to: **http://localhost**
23 If everthing is fine you should see the PHP Test Page.
25 ## Using local php source
27 Just change `docker-compose.yml` and setup a volume to your php source.
29 ```yml
31 volumes:
32    - /srv/docker/apache2/prod:/var/www/localhost/htdocs
33 ```