A graph, relational database with a typed schema and its own EdgeQL query language.
Gel, formerly EdgeDB, is an open source graph, relational database that runs on top of PostgreSQL. You describe your data as typed object types with links and properties in a declarative schema, evolve it through versioned migrations, and query it with EdgeQL, a composable query language that returns rich nested results without hand written joins. A built in web interface gives you a schema browser, an interactive REPL and a data explorer, and client libraries cover the popular languages.
It suits any team that wants the safety of a typed relational core with the ergonomics of a modern query language, running inside their own cloud account rather than as a hosted service.
The cloudimg image installs Gel from the official package repository and runs a single node server under systemd, with the database bound to loopback behind an nginx reverse proxy so the built in web interface is reachable securely within minutes. Nothing sensitive is baked into the image: on the first boot of every virtual machine the server instance is created fresh, the superuser password is randomised, a per machine TLS certificate is generated, and the web interface is gated by a per machine reverse proxy password held only as a hash. A small demo schema and data set are seeded so the schema browser and data explorer are populated the moment you sign in. The paired deployment guide covers reading your credentials, exploring the schema, running EdgeQL, applying a migration and connecting a client, and every deployment carries 24/7 support.
Real screenshots taken while testing this image against its deployment guide.
This is a repackaged open source software product wherein additional charges apply for cloudimg support services.
## Why Gel on AWS Marketplace?
Backend engineers and data-modelling teams running workloads on AWS EC2 often face a choice: spend 30-60 minutes manually installing a database, configuring TLS, setting up a reverse proxy, and generating credentials - or use a managed service that limits control. This Gel AMI eliminates that trade-off. You get a fully configured graph-relational database that is query-ready on first boot, with production-grade security defaults and full administrative access.
## What Is Gel?
Gel (formerly EdgeDB) is an open source graph-relational database built on top of PostgreSQL. You describe your data as typed object types with links and properties in a declarative schema, evolve it through versioned migrations, and query it with EdgeQL - a composable query language that returns rich, deeply nested results without hand-written joins. Gel ships a built-in web admin interface (the Gel UI) with a schema browser, an interactive REPL, and a data explorer. Official client libraries cover popular languages.
## How This AMI Saves You Time
Compare this to a bare EC2 install where you would manually add the Gel repository, configure systemd units, generate TLS certificates, set up nginx, and create authentication credentials - steps that typically take 30-60 minutes and introduce configuration drift across instances.
## Security by Design
Unlike images that ship shared credentials, this AMI generates all secrets fresh on every first boot:
The database process binds only to the loopback interface and is reachable solely through the authenticated nginx proxy on port 80. systemd manages the service for automatic restarts and clean logging. The image is captured with the data directory wiped and the server disabled, ensuring every launch starts clean.
## Example Use Case
Consider a SaaS product catalog with deeply nested categories, variant options, and cross-linked recommendations. In raw PostgreSQL you would write multi-level JOINs or recursive CTEs. With Gel, you model categories, products, and recommendations as typed object types with links, then retrieve an entire nested product tree in a single EdgeQL query - no ORM layer, no manual join assembly. The Gel UI lets you visually browse that schema and test queries interactively before wiring them into your Next.js or Python backend via the official client library.
## What Is Included
## Getting Started
Launch the AMI on your preferred EC2 instance type, wait for first-boot initialisation to complete, then retrieve your generated credentials from the instance. Sign into the Gel UI through your browser, explore the demo schema, run EdgeQL queries in the REPL, and connect your application using an official client library. The deployment guide walks you through each step.
Gel and EdgeDB are trademarks of their respective owner. All product and company names are trademarks or registered trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.