Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hexylena/docker-postgraphql
- Owner: hexylena
- License: other
- Created: 2017-02-04T02:53:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T01:42:53.000Z (over 7 years ago)
- Last Synced: 2024-10-17T13:58:23.693Z (about 1 month ago)
- Topics: docker, graphql
- Language: Shell
- Size: 14.6 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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