vanilla.env
and copy the contents of sample.vanilla.env
into vanilla.env
. Configure parameters.mysql.env
and copy the contents of sample.mysql.env
into mysql.env
. Configure parameters.MYSQL_DATABASE
and MYSQL_ROOT_PASSWORD
might be changed. You need to use these values during Vanilla Forums
installation.These variables are mandatory.
MYSQL_ROOT_PASSWORD
specifies the password that will be set for the MySQL root superuser account.docker-compose -f docker-compose.yml -f docker-compose.dev.yml build
to build the imagedocker-compose -f docker-compose.yml -f docker-compose.dev.yml up
to run Vanilla Forumshttp://<your_docker_machine_ip>
by defaultvanilla.env
and copy the contents of sample.vanilla.env
into vanilla.env
. Configure parameters.mysql.env
and copy the contents of sample.mysql.env
into mysql.env
. Configure parameters.
MYSQL_DATABASE
and MYSQL_ROOT_PASSWORD
might be changed. You need to use these values during Vanilla Forums
installation.These variables are mandatory.
MYSQL_ROOT_PASSWORD
specifies the password that will be set for the MySQL root superuser account.MYSQL_HOST
is set to mysql-local
in both vanilla.env
and mysql.env
config/vanilla/config.php
and change the parameter $Configuration['Garden']['Installed']
to false
as shown below
$Configuration['Garden']['Installed'] = false;
docker-compose -f docker-compose.yml -f docker-compose.local.yml build --build-arg BRANCH=develop
to build the imagedocker-compose -f docker-compose.yml -f docker-compose.local.yml up
to run Vanilla Forumslocalhost
in your browservanilla.env
and copy the contents of sample.vanilla.env
into vanilla.env
. Configure parameters.docker-compose build
to build the imagedocker-compose up
to run Vanilla Forumshttp://<your_docker_machine_ip>
by defaultGo to Setup Vanilla Forums to complete installation.
Go to Build Vanilla Forums to install dependencies and build assets.