- Docker (docker deployment)
 
- Create 
vanilla.envand copy the contents ofsample.vanilla.envintovanilla.env. Configure parameters. - Create 
mysql.envand copy the contents ofsample.mysql.envintomysql.env. Configure parameters.
MYSQL_DATABASEandMYSQL_ROOT_PASSWORDmight be changed. You need to use these values during Vanilla Forums installation.These variables are mandatory.MYSQL_ROOT_PASSWORDspecifies the password that will be set for the MySQL root superuser account. - Run 
docker-compose -f docker-compose.yml -f docker-compose.dev.yml buildto build the image - Run 
docker-compose -f docker-compose.yml -f docker-compose.dev.yml upto run Vanilla Forums - The Vanilla Forums will be available at 
http://<your_docker_machine_ip>by default 
- Create 
vanilla.envand copy the contents ofsample.vanilla.envintovanilla.env. Configure parameters. - Create 
mysql.envand copy the contents ofsample.mysql.envintomysql.env. Configure parameters.MYSQL_DATABASEandMYSQL_ROOT_PASSWORDmight be changed. You need to use these values during Vanilla Forums installation.These variables are mandatory.MYSQL_ROOT_PASSWORDspecifies the password that will be set for the MySQL root superuser account. - Make sure 
MYSQL_HOSTis set tomysql-localin bothvanilla.envandmysql.env - Go to file 
config/vanilla/config.phpand change the parameter$Configuration['Garden']['Installed']tofalseas shown below$Configuration['Garden']['Installed'] = false; - Run 
docker-compose -f docker-compose.yml -f docker-compose.local.yml build --build-arg BRANCH=developto build the image - Run 
docker-compose -f docker-compose.yml -f docker-compose.local.yml upto run Vanilla Forums - After it is done, go to 
localhostin your browser - You should be able to see the page similar to below

 - Follow the instructions in Setup Vanilla Forums to complete installation.
 
- You need to know how connect to MySQL Database:
- Database Host
 - Database Name
 - Database User
 - Database Password These parameters will be used in Vanilla Forums Installation Wizard.
 
 - Create 
vanilla.envand copy the contents ofsample.vanilla.envintovanilla.env. Configure parameters. - Run 
docker-compose buildto build the image - Run 
docker-compose upto run Vanilla Forums - The Vanilla Forums will be available at 
http://<your_docker_machine_ip>by default 
Go to Setup Vanilla Forums to complete installation.
Go to Build Vanilla Forums to install dependencies and build assets.