Skip to main content

Prerequisites

Before you deploy Orka, ensure you have:
  • Docker
  • Docker Compose

Deploy with Docker

To try Orka locally with sample data:
  1. Clone the quickstart repository and navigate to the root directory
  2. Run the startup script:
./start.sh
This starts all services and loads sample data.
The quickstart demo includes a pre-configured PostgreSQL database with sample automotive data for testing.

Connect to the quickstart database

After the services start, connect Orka to the PostgreSQL database using this connection string:
postgresql://conduktor:change_me@postgresql-automotive/automotive-db?sslmode=require&channel_binding=require
Use this connection string when you create your first source connection in Orka.

View sample data

To view the data in the automotive database:
./list-automotive-data.sh

Clean up

To remove all services:
docker-compose down -v