~3 min
Install & Start
Install dependencies and start Mission Control.
Start with Docker
From the mission-control directory:
docker compose up -d
Docker will pull the required images on first run (this may take 2–5 minutes depending on your connection). Subsequent starts are much faster.
To follow the logs:
docker compose logs -f
To stop:
docker compose down
Install Dependencies
Make sure you’re in the mission-control directory, then:
npm install
Start the Server
npm start
For development with auto-reload:
npm run dev
To run in the background:
nohup npm start > mission-control.log 2>&1 &
nohup npm start > mission-control.log 2>&1 &
After running this command, Mission Control is starting up in the background. The next step will confirm it’s reachable in your browser.