Skip to main content

Install Finmars Platform




Here’s a very simple guide to install Finmars on your Ubuntu VM:

  1. Connect to your VM
    Example:
    ssh -i /path/to/finmars-key.pem ubuntu@<Public-IP>
  2. Install Docker
    sudo apt update
    sudo apt install -y ca-certificates curl gnupg lsb-release
    
    wget -qO- https://get.docker.com/ | sh
    
    sudo usermod -aG docker $USER
    newgrp docker
  3. Install Make
    sudo apt install -y make git
  4. Create the finmars folder
    sudo mkdir -p /opt/finmars
    sudo chown $USER:$USER /opt/finmars
  5. Clone the Finmars repo
    cd /opt/finmars
    git clone https://github.com/finmars-platform/finmars-community-edition.git .
  6. Run database migrations
    make migrate
  7. Start all services
    make up