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/multipress
Make the downloaded file executable:
chmod u+x ./multipress
Move Multipress to a directory in your system's PATH
(e.g., /usr/local/bin
):
sudo mv ./multipress /usr/local/bin
Confirm it’s accessible by running:
multipress --help
Check all requirement and auto install them
multipress doctor
Run the following command and follow the prompts to set up your project:
multipress new
cd multipress
All the subcommand must be run into your project directory
Navigate to your project directory and deploy:
multipress deploy
After deployment, configure your WordPress instance as desired.
Replicate your WordPress instance as needed:
multipress replicate 10
Replace
10
with the number of instances you want to generate.
Generate backup of all your instances:
multipress backup
You'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