Skip to content

This guide covers installing the prerequisites for Frona development on Linux. Once done, continue to the Project Setup page.

Install Docker

Install Docker and Docker Compose using your distribution's package manager. For example on Ubuntu/Debian:

bash
sudo apt-get update
sudo apt-get install docker.io docker-compose-v2
sudo usermod -aG docker $USER

Log out and back in for the group change to take effect.

Install mise

bash
curl https://mise.run | sh

Then add mise to your shell profile:

bash
# For bash
echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc

# For zsh
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc

Next step

Continue to Project Setup to clone and run Frona.