Multipress is a powerful tool to manage and deploy WordPress instances with ease. Follow these steps to get started:
Download the latest release of Multipress from GitHub:
wget https://github.com/quix-labs/multipress/releases/latest/download/multipressMake the downloaded file executable:
chmod u+x ./multipressMove Multipress to a directory in your system's PATH (e.g., /usr/local/bin):
sudo mv ./multipress /usr/local/binConfirm it’s accessible by running:
multipress --helpCheck all requirement and auto install them
multipress doctorRun the following command and follow the prompts to set up your project:
multipress new
cd multipressAll the subcommand must be run into your project directory
Navigate to your project directory and deploy:
multipress deployAfter deployment, configure your WordPress instance as desired.
Replicate your WordPress instance as needed:
multipress replicate 10Replace
10with the number of instances you want to generate.
Generate backup of all your instances:
multipress backupYou're all set! 🎉
- Stop project:
multipress down - Start project:
multipress up
- Go to your project directory:
cd your_project - Stop all containers:
multipress down - You can now remove all the project folder (cannot be recovered):
rm -r ./your_project