Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hexylena/docker-postgraphql

simple docker container around https://github.com/calebmer/postgraphql
https://github.com/hexylena/docker-postgraphql

docker graphql

Last synced: 16 days ago
JSON representation

simple docker container around https://github.com/calebmer/postgraphql

Awesome Lists containing this project

README

        

# docker-postgraphql [![Docker Automated buil](https://img.shields.io/docker/automated/erasche/postgraphql.svg)](https://hub.docker.com/r/erasche/postgraphql/)

Simple container for exposing graphql/graphiql as part of a completely
dockerized environment. Example `docker-compose.yml` is for genomics data with
the Chado database schema.

## Usage

```yaml
postgraphql:
image: erasche/postgraphql:latest
ports:
- "5000"
environment:
#DB_DEFAULT_ROLE: postgres
DB_GRAPHQL_PATH: "/graphql"
DB_GRAPHIQL_PATH: "/graphiql"
PG_SECRET: "deadbeefcafe"
DB_SCHEMA: "public"
PGUSER: postgres
PGPASSWORD: postgres
PGHOST: postgres
PGDATABASE: postgres
PGPORT: 5432
links:
- "your_postgres_container:postgres"
```

## LICENSE

MIT