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
- Create a directory for Sequin and download the Docker Compose file:
Alternatively, clone the repository:
That’s it! Sequin is now running locally with default configurations.
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?