One-command bash installers that provision a fresh Ubuntu VPS and set up Mixpost ready for use.
| Edition | Install Command | License Required |
|---|---|---|
| Lite | curl -fsSL https://mixpost.app/install-lite.sh | bash |
No |
| Pro | curl -fsSL https://mixpost.app/install-pro.sh | bash |
Yes |
| Enterprise | curl -fsSL https://mixpost.app/install-enterprise.sh | bash |
Yes |
Test installer scripts locally using Docker. This simulates a fresh Ubuntu 24.04 VPS.
Note: The installer uses
systemctlwhich won't fully work in Docker (services won't actually start). This is fine for testing the script flow, package installation, config generation, and catching errors — but a full end-to-end test still needs a real VPS.
docker build -t mixpost-deployment-test .# Lite
docker run -it mixpost-deployment-test bash lite/install.sh
# Pro
docker run -it mixpost-deployment-test bash pro/install.sh
# Enterprise
docker run -it mixpost-deployment-test bash enterprise/install.shDrop into a shell to inspect or run commands manually:
docker run -it mixpost-deployment-testOfficial documentation: docs.mixpost.app
