Run Multibox locally with Docker
This quickstart guide explains how to run Multibox locally using docker compose. You will learn how to obtain a free short-time license and set up Multibox.
Get a license
Go to the Aidbox portal. Sign up and click the new license button. Choose product type "Multibox".
You'll see your license in the "My Licenses" list. Click on your new license and copy credentials. It is a long string like
This string is your license key.
Install Docker and Docker Compose
Follow the official Docker guide to install Docker and Docker Compose
Create docker-compose.yaml
Firstly, let's make the configuration file. There are two services: aidbox-db
and multibox
. The first one is PostgreSQL database and the second one is the Multibox itself.
Create .env file
To configure Multibox we need to pass environment variables to it. We can pass them with .env
file.
Insert your license key into environment file. Change the line
in the .env
file where <your-license-key>
is a license key which you obtained on the get a license step.
You can find more about required Multibox environment variables here.
Launch Multibox
Start Multibox with Docker Compose
This command will download and start Multibox and its dependencies. This can take a few minutes.
Go to the Multibox UI
Open http://127.0.0.1.nip.io:8888. You'll see Multibox login page. Sign in using credentials specified in AIDBOX_SUPERUSER
variable in .env
file.
Now you are ready to use Multibox.
Last updated