Skip to content

Commit

Permalink
fixup! feat(cli): expose graphql endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
endersonmaia committed Dec 5, 2024
1 parent 55f8c26 commit 77e0506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/node/docker-compose-graphql.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
graphql_database_creator:
image: postgres:15-alpine
command: ["createdb", "hlgraphql"]
command: ["createdb", "graphql"]
depends_on:
database:
condition: service_healthy
Expand All @@ -15,7 +15,7 @@ services:
graphql:
image: cartesi/sdk:devel
environment:
POSTGRES_GRAPHQL_DB_URL: postgres://${PGUSER:-postgres}:${PGPASSWORD:-password}@${PGHOST:-database}:${PGPORT:-5432}/hlgraphql?sslmode=disable
POSTGRES_GRAPHQL_DB_URL: postgres://${PGUSER:-postgres}:${PGPASSWORD:-password}@${PGHOST:-database}:${PGPORT:-5432}/graphql?sslmode=disable
POSTGRES_NODE_DB_URL: postgres://${PGUSER:-postgres}:${PGPASSWORD:-password}@${PGHOST:-database}:${PGPORT:-5432}/${PGDATABASE:-postgres}?sslmode=disable
expose:
- 8080
Expand Down

0 comments on commit 77e0506

Please sign in to comment.