movibe / nhost-docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker-compose example

Here is an example on how to reproduce the Nhost stack from a docker-compose file.

Configuration

git clone https://github.com/nhost/nhost
cd nhost/examples/docker-compose
cp .env.example .env
docker-compose up -d

The following endpoints are now exposed:

  • http://localhost:1337/v1/graphql: Hasura GraphQL endpoint

  • http://localhost:1337/v1/auth: Hasura Auth

  • http://localhost:1337/v1/storage: Hasura Storage

  • http://localhost:1337/v1/functions: Functions

  • http://localhost:3030: Nhost Dashboard

  • http://localhost:1337: Hasura Console

  • http://localhost:8025: Mailhog SMTP testing dashboard

  • http://localhost:9090: Traefik dashboad

Running the Nhost dashboard locally

In order for you to be able to make edits to the database from the Nhost dashboard, you need to run the Hasura console locally from the Hasura CLI:

hasura console

The Nhost Dashboard uses the Hasura migrations API in order to make edits to the database. It runs over port 9693 and is only accessible through running the Hasura console from the CLI. Because the Docker compose still only uses the graphql-engine Hasura Docker image and does not include the CLI image, that is why you need to run it locally. See nhost/nhost#1220. Users are welcome to contibute a Docker compose that includes the CLI image to resolve this.

The Nhost Dashboard also requires the Hasura admin secret to nhost-admin-secret specified in the .env file.

About


Languages

Language:HTML 66.8%Language:PLpgSQL 15.2%Language:TypeScript 15.1%Language:JavaScript 2.9%