Skip to Content
Getting StartedInstallation

Installation

Orrery is published to the GitHub Container Registry. Pull the latest image:

docker pull ghcr.io/orrery-io/orrery:latest

Run with a PostgreSQL connection string:

docker run -e DATABASE_URL=postgres://... -p 3000:3000 ghcr.io/orrery-io/orrery

All published versions are listed at ghcr.io/orrery-io/orrery .

From source

git clone https://github.com/orrery-io/orrery cd orrery cargo build --release ./target/release/orrery-server

Configuration

Environment VariableDefaultDescription
DATABASE_URLrequiredPostgreSQL connection string
PORT3000HTTP server port

Note: Full configuration reference coming soon.

Last updated on