Template for a docker based development setup.
- docker (https://docs.docker.com/engine/installation)
- docker-compose (https://docs.docker.com/compose)
- composer (https://getcomposer.org)
Image | Version | OS |
---|---|---|
Nginx | 1.11 | Alpine |
PHP-FPM | 7.1 | Alpine |
Redis | 3.2 | Alpine |
MariaDB | 10.1 | Debian Jessie |
$ git clone https://github.com/egobude/docker-project-template.git
$ cd docker-project-template
Create a .env file from .env.dist and edit it with your own config
$ cp .env.dist .env
$ docker-compose build
$ composer create-project neos/neos-base-distribution Data
$ composer create-project neos/flow-base-distribution Data
$ docker-compose up -d
You can reach your project under http://<YOUR_IP_ADRESS:1234
$ docker-compose down
$ docker-compose up -d --build --force-recreate
Whenever you make changes to the files located under
/Docker
you have to rebuild the images. Otherwise the changes have no effect!
To execute a custom shell script on start up place one or more *.sh files into the /docker-entrypoints folder. This feature is available for the php-fpm and nginx image. The files are loaded alphabetically.
If you want a different port than 1234 you can edit the environment variable NGINX_PORT
in the .env file.
To change the document root just edit the environment variable NGINX_DOCUMENT_ROOT
in the .env file.