Skip to content

Commit e7d05fa

Browse files
authored
Correct Docker image location (#2929)
According to the CI, the location of the docker image should be `kamilkisiela/graphql-inspector` and not `graphql-hive/graphql-inspector`. The latter doesn't (yet) exist on Docker Hub, which momentarily through me for a loop when trying to integrate this Docker image into our CI pipelines. https://github.com/graphql-hive/graphql-inspector/blob/3539940ffd6cdc7d48e2b2fb54acd8f8ec886e10/.github/workflows/docker.yml#L22
1 parent e198fcf commit e7d05fa

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/src/pages/docs/installation.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ import { diff, validate, coverage, ... } from '@graphql-inspector/core'
102102
GraphQL Inspector is also available on Docker.
103103

104104
```sh
105-
docker run graphql-hive/graphql-inspector --help
105+
docker run kamilkisiela/graphql-inspector --help
106106
```
107107

108108
Bind volumes to `/app` for working with local files, for example:
109109

110110
```sh
111-
docker run -v $PWD:/app graphql-hive/graphql-inspector graphql-inspector diff old.graphql new.graphql
111+
docker run -v $PWD:/app kamilkisiela/graphql-inspector graphql-inspector diff old.graphql new.graphql
112112
```
113113

114114
To run commands interactively inside of the container, use the following:
115115

116116
```sh
117-
docker run -it graphql-hive/graphql-inspector
117+
docker run -it kamilkisiela/graphql-inspector
118118
```

website/src/pages/docs/products/ci.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ version: 2
124124
jobs:
125125
build:
126126
docker:
127-
- image: graphql-hive/graphql-inspector
127+
- image: kamilkisiela/graphql-inspector
128128
steps:
129129
- checkout
130130
- run:

0 commit comments

Comments
 (0)