This is the repository for both the website and the generator over at PHPDocker.io, opensourced on an Apache 2.0 license and open for anyone to contribute as they please
The usual Github model of forking and pull request. We're following trunk based development, so please create your branches against the master
branch. There are no unit tests to keep an eye on, but until I get a functional suite testing ready, code merges can take a while.
All I ask is to thoroughly test, manually, any changes made to the generators. You will need to run the containers with example apps to ensure they're working. Functional tests in the future will do precisely this, with a combination of PHP versions, frameworks, databases, etc. Setting this up is an area you could contribute on.
If you would like to add new containers, please either base them on alpine
images, debian:jessie
(used by many official images such as MySQL, ElasticSearch...) or Ubuntu 16.04 as these are in use for the generated environments and will optimise deployment and provisioning to users.
Please follow PSR code formatting standards, and Symfony best practices and, in general, do what you see already done in the current code.
Please note everything is really in very early stages; if you see anything at all you can improve upon, please do so.
Project is given with a PHPDocker.io generated environment.
- Clone
- Copy
app/config/parameters.yml.dist
intoapp/config/parameters.yml
composer install
bower install
php bin/console assets:install --symlink --relative
- cd into the project folder and run
docker-compose up -d
. More specific information on phpdocker/README.md. - You can then head off to the
/generator
route; you'll need to runbin/console doctrine:schema:create
within the PHP container (or use theconsole
script at the root of the project) to avoid SQL errors on the homepage
Note: you'll notice a console
script at the root of the project. It does some voodoo to run bin/console
within the container.