Only supports Mac OSX at the moment but everything can be easily adapted to work on other platforms. Assume that you are using PhpStorm as your IDE.
This repository contains a ready-for-development environment to develop against Vanilla.
SQL database.
- Accessible from the container with the hosts "database".
- Accessible from the docker host machine with the hosts "database", "localhost", "127.0.0.1'
- The user is "root" and there is no password.
Apache 2 web server.
- Accessible with the port 9080 and 9443
- Serve https://dev.vanilla.localhost:9443
nginx web server
- Serve:
- https://dev.vanilla.localhost (main forum)
- https://vanilla.localhost/dev (directory-based main forum, see the docs)
- https://sso.vanilla.localhost (stub-sso-providers)
- https://embed.vanilla.localhost (stub-embed-providers)
- https://advanced-embed.vanilla.localhost (stub-embed-providers)
- http://vanilla.test:8080 (unit tests address)
php-fpm with PHP 7.4 and rsyslogd.
The php-fpm container comes in two flavours, standard and xdebug.
The nginx container takes care of routing the request to the appropriate php-fpm flavour based on if your request needs debugging or not.
Both versions integrate rsyslogd to support PHP's syslog(). /var/log/syslog is tailed to stdout and it is prompted by docker-compose in the usual way (docker-compose logs -f, docker-compose up --build, etc)
Sphinx search service (service-sphinx.yml).
For this setup to work properly you need to clone all vanilla repositories in the same base directory
-
Get Docker for OSX and install it.
- Do not forget to tune up the allocated Memory and CPUs.
Docker>Preferences>Advanced
- Do not forget to tune up the allocated Memory and CPUs.
-
Get Composer v1 and install it making sure to specify installation options that install v1 composer (e.g. the
--1version option). -
Create a directory for your project. In this example, we'll use
my-vanilla-project, but you can use any name. -
Move into your project directory.
-
Clone or download vanilla/vanilla-docker into your project directory.
-
Clone or download vanilla/vanilla into your project directory.
-
Clone or download any other project dependencies into your project directory (for example, any of vanilla/addons), and install according to their instructions. Note: All addons, plugins, themes, etc, must be located in the project directory. Everything outside of the project directory will not be made available inside of the Docker container.
-
You should have the following structure
my-vanilla-project ├── vanilla ├── vanilla-docker ├── ... -
Move into the
vanilladirectory. -
Run
composer installwhich will install Vanilla's dependencies. -
Move up and over into the
vanilla-dockerdirectory. -
Run
sudo ./mac-setup.shwhich will:- Add a self signed certificate
*.vanilla.localhostto your keychain. - Safely update your
/etc/hosts. - Create a docker volume named "datastorage" which will contain the database data.
- Add a self signed certificate
-
Run
docker-compose up --build(It will take a while the first time). You'll know it worked if you see something likeSuccessfully built… Successfully tagged… Creating database ... done Creating php-fpm ... done Creating httpd ... done Creating nginx ... done Attaching to database, php-fpm, httpd, nginx … php-fpm | done.and voila -> dev.vanilla.localhost shows the Vanilla installer.
-
Run the installer!
- It is recommended to use
vanilla_devas the database name since some services are configured to use that database. - It is recommended to use
databasefor the host name. - It is recommended to use
rootas the username.
- It is recommended to use
To properly stop the containers you need to run docker-compose down.
Do not forget to run docker-compose up --build to start up the services every time you restart your computer.
To run additional services (named service-*.yml) you can specify which .yml file to run like so:
docker-compose -f docker-compose.yml -f docker-compose.override.yml --buildYou can add as many services as you want that way. You can create a script named custom.boot.sh, with the combination of services that you want, so that it is easier to start the services that you want.
Generally, there should be documentation inside the .yml file of the service that gives you information about it.
For more information: understanding-multiple-compose-files
See Make Xdebug work with PhpStorm.
See Make unit tests work within PhpStorm.
Q. Why is everything so slow?
A. You are probably running on the APFS file system that became the standard with macOS High Sierra and which has pretty bad performance with Docker for Mac. Having the database on your host instead of inside docker might help a lot. See #10.