Files
zopu-code/.agents/skills/per-tenant-database/reference/self-hosting/install.md
2026-07-22 00:21:04 +05:30

33 lines
792 B
Markdown

# Installing Rivet Engine
> Source: `src/content/docs/self-hosting/install.mdx`
> Canonical URL: https://rivet.dev/docs/self-hosting/install
> Description: Install Rivet Engine using Docker, binaries, or a source build.
---
For more options:
- [Docker Container](/docs/self-hosting/docker-container) for persistent storage, configuration, and production setups
- [Docker Compose](/docs/self-hosting/docker-compose) for multi-container deployments with PostgreSQL
## Docker
```bash
docker run -p 6420:6420 rivetdev/engine
```
## Prebuilt Binaries
Prebuilt binaries coming soon
## Build From Source
```bash
git clone https://github.com/rivet-dev/rivet.git
cd rivet
cargo build --release -p rivet-engine
./target/release/rivet-engine
```
_Source doc path: /docs/self-hosting/install_