Skip to content

Latest commit

 

History

History
68 lines (39 loc) · 2.47 KB

README.md

File metadata and controls

68 lines (39 loc) · 2.47 KB

PHP DockerStack

from the initial project by Kasper Kronborg Isager

Dockerized PHP development stack: Nginx, MySQL, PHP-FPM, HHVM, Memcached

Build Status

PHP DockerStack provides you a full environment to run your php applications backed by already-configured nginx and MySql.

This stack is already configured to run all the application you put in the www folder, just follow the naming convention and you will be all set.

What's inside

Requirements

Running

Install Docker, then, modify the docker-compose.yml file in the root of this repo, setting adminuser and adminpass variables to be meaningful to you.

Then run:

$ docker-compose up

That's it! You can now access your configured sites via http://localhost:8080/{sitename} or, if you deployed this online and you have the DNS configured already http://{sitename}

Adding a website

If you want to run a website you own, just place it in the www directory that comes with this repo. The nginx in this stack is already configured to serve all virtualHosts, with a lookup rule based on the domain name. As an example, all the traffic coming form [www.]example.com will be routed to /var/www/example.com directory.

Adding a sub-domain (third level domain)

Third level domains are also routed to sub-directories in the domain directory. For example, hello.example.com will be routed to /var/www/example.com/hello

Yes, it's just that easy!

Initialise your MySQL Database

Any *.sql or *.sql.gz file in the db directory will be used to initialise your mysql instance. That's it :)

SSL

The docker container created already supports the creation of SSL certificates, via the free and awesome Let's Encrypt project.

To automatically get a certificate and configure nginx, just run the following command from you host's terminal (replace example.com and [email protected] with real ones!):

docker exec -d phpdockerstack_front_1 /etc/nginx/ssl/sslget example.com [email protected]

License

Copyright © 2016-2017 Francesco Stasi. Licensed under the terms of the MIT license.