GraphQL Debugger In Docker
To pull the docker image, run the following command:
docker pull graphqldebugger/graphqldebugger:__TAG__
To run the docker image, run the following command:
docker run --name graphql-debugger -p 16686:16686 -p 4318:4318 graphqldebugger/graphqldebugger:__TAG__
Docker Compose
To use GraphQL Debugger inside docker compose, add the following to your docker-compose.yml
file:
graphql-debugger:
image: graphqldebugger/graphqldebugger
ports:
- 16686:16686
- 4318:4318