Skip to content

Commit

Permalink
Support GEL_XXX environment variables (#96)
Browse files Browse the repository at this point in the history
Co-authored-by: Elvis Pranskevichus <[email protected]>
  • Loading branch information
fmoor and elprans authored Feb 14, 2025
1 parent 223d195 commit 59a9349
Show file tree
Hide file tree
Showing 7 changed files with 545 additions and 441 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ ARG version
ARG exact_version
ARG subdist

ENV GOSU_VERSION 1.11
ENV BRANDING ${branding}
ENV DEFAULT_OS_USER ${branding}
ENV DEFAULT_SERVER_BINARY ${branding}-server-${version}
ENV VERSION ${version}
ENV GOSU_VERSION=1.11
ENV BRANDING=${branding}
ENV DEFAULT_OS_USER=${branding}
ENV DEFAULT_SERVER_BINARY=${branding}-server-${version}
ENV VERSION=${version}

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -61,7 +61,7 @@ export DEBIAN_FRONTEND=noninteractive; \
&& apt-get purge -y --auto-remove \
&& rm -rf /var/lib/apt/lists/*

ENV LANG en_US.utf8
ENV LANG=en_US.utf8

EXPOSE 5656

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# The official Docker image for EdgeDB
# The official Docker image for Gel

This repository contains the officially maintained Docker image packaging
EdgeDB and the EdgeDB CLI.
Gel and the Gel CLI.

#### [Documentation](https://www.edgedb.com/docs/guides/deployment/docker)

## When to use this image

This image is intended for use in production, or as part of a
development setup that involves multiple containers orchestrated by
Docker Compose or a similar tool. Otherwise, we recommend using the [`edgedb CLI`](https://www.edgedb.com/docs/guides/quickstart) to install EdgeDB and
Docker Compose or a similar tool. Otherwise, we recommend using the [`edgedb CLI`](https://www.edgedb.com/docs/guides/quickstart) to install Gel and
manage local instances.

## What is EdgeDB?
## What is Gel?

[EdgeDB](https://www.edgedb.com) is an open-source object-relational database
[Gel](https://www.geldata.com) is an open-source object-relational database
built on top of PostgreSQL, featuring:

- strict, object-oriented typed schema;
Expand All @@ -23,4 +23,4 @@ built on top of PostgreSQL, featuring:
- built-in support for schema migrations;
- native GraphQL support.

Try the [quickstart](https://www.edgedb.com/docs/guides/quickstart) or jump into the [docs](https://www.edgedb.com/) to get started with EdgeDB.
Try the [quickstart](https://docs.geldata.com/guides/quickstart) or jump into the [docs](https://www.geldata.com/) to get started with Gel.
Loading

0 comments on commit 59a9349

Please sign in to comment.