Skip to content

Commit 8db122d

Browse files
authored
Merge pull request #385 from apollographql/docs/always-pull-latest-docker
docs: Add always pull latest docker image to sample docker run commands
2 parents dfe6fac + 4ff50f9 commit 8db122d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

docs/source/deploy.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ docker run \
3535
-p 5000:5000 \
3636
-v <path to the preceding config>:/config.yaml \
3737
-v $PWD/graphql/TheSpaceDevs:/data \
38+
--pull always \
3839
ghcr.io/apollographql/apollo-mcp-server:latest /config.yaml
3940
```
4041

docs/source/quickstart.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ You can run the MCP Server using the Rover CLI or Docker.
113113
-p 5000:5000 \
114114
-v $PWD/graphql/TheSpaceDevs/config.yaml:/config.yaml \
115115
-v $PWD/graphql/TheSpaceDevs:/data \
116+
--pull always \
116117
ghcr.io/apollographql/apollo-mcp-server:latest /config.yaml
117118
```
118119

docs/source/run.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ docker run \
119119
-p 5000:5000 \
120120
-v <PATH/TO/CONFIG/FILE>:/config.yaml \
121121
-v <PATH/TO/PROJECT/ROOT>:/data \
122+
--pull always \
122123
ghcr.io/apollographql/apollo-mcp-server:latest /config.yaml
123124
```
124125

0 commit comments

Comments
 (0)