LOB BrainLOB Brain
Back to Documentation

Master Hub Deployment

How to deploy the central federation Hub.

The Master Hub is highly resource-efficient and can be deployed on any Linux VPS, AWS, Azure, or on-premise instance.

Docker Compose Configuration

version: "3.8"
services:
  lob-hub:
    image: nobisoft/lob-hub:latest
    ports:
      - "8080:8080"
      - "9090:9090"
    environment:
      - JWT_SECRET=super_secure_vault_key
      - DB_URL=postgres://user:pass@db:5432/lob
    volumes:
      - lob_data:/app/data
    restart: always

volumes:
  lob_data: