Getting Started with Sequin
Get Sequin running in a few minutes
You can start running Sequin quickly with Docker Compose.
Prerequisites
You’ll need Docker and Docker Compose installed.
Quick start
The easiest way to get started with Sequin is with our Docker Compose file. This file starts a Postgres database, Redis instance, and Sequin server.
Create directory and start services
- Download sequin-docker-compose.zip.
- Unzip the file.
- Navigate to the unzipped directory and start the services:
Verify services are running
Check that Sequin is running using docker ps
:
You should see output like the following:
All three containers should be up and running (status: Up
).
Using your own database
Using existing Postgres
Sequin uses a Postgres database for configuration and to assist with its change data capture process.
If you have an existing Postgres database you want Sequin to use for config, modify your docker-compose.yaml
:
- Remove the
postgres
service section - Update the Sequin service configuration:
Using existing Redis
Sequin uses Redis to assist with its change data capture process.
If you have an existing Redis instance:
- Remove the
redis
service section - Update the Sequin service configuration:
Adding to an existing project
To add Sequin to an existing project’s Docker Compose file, add a sequin
service:
Preparing for production
For more configuration options and steps for deploying to production, see the Configuration Reference.
Was this page helpful?