Skip to content

Commit 0c6e064

Browse files
authored
Merge pull request #467 from apollographql/fix-docker-ignoring-port-setting
fix docker image ignoring port setting
2 parents e953460 + 37bb774 commit 0c6e064

File tree

7 files changed

+23
-14
lines changed

7 files changed

+23
-14
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# [1.1.1] - 2025-10-21
8+
9+
## 🐛 Fixes
10+
11+
### fix docker image ignoring port setting - @DaleSeo PR #467
12+
13+
The Docker image had `APOLLO_MCP_TRANSPORT__PORT=8000` baked in as an environment variable in `flake.nix`. Since environment variables take precedence over config file settings (by design in our config loading logic), users are unable to override the port in their `config.yaml` when running the Docker container.
14+
15+
16+
717
# [1.1.0] - 2025-10-16
818

919
## ❗ BREAKING ❗

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2024"
1212
license-file = "LICENSE"
1313
repository = "https://github.com/apollographql/apollo-mcp-server"
1414
rust-version = "1.89.0"
15-
version = "1.1.0"
15+
version = "1.1.1"
1616

1717
[workspace.dependencies]
1818
apollo-compiler = "1.27.0"

docs/source/run.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To install or upgrade to the **latest release** of Apollo MCP Server:
4141
<Tab label="Windows">
4242

4343
```terminal showLineNumbers=false
44-
iwr 'https://mcp.apollo.dev/download/win/latest' | iex
44+
iwr 'https://mcp.apollo.dev/download/win/latest' | iex
4545
```
4646
</Tab>
4747

@@ -55,7 +55,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
5555

5656
```terminal showLineNumbers=false
5757
# Note the `v` prefixing the version number
58-
curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4 | sh
58+
curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1 | sh
5959
```
6060

6161
</Tab>
@@ -64,7 +64,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
6464

6565
```terminal showLineNumbers=false
6666
# Note the `v` prefixing the version number
67-
iwr 'https://mcp.apollo.dev/download/win/v0.7.4' | iex
67+
iwr 'https://mcp.apollo.dev/download/win/v1.1.1' | iex
6868
```
6969
</Tab>
7070

@@ -78,7 +78,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
7878

7979
```terminal showLineNumbers=false
8080
# Note the `v` prefixing the version number and the `-rc` suffix
81-
curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4-rc.1 | sh
81+
curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1-rc.1 | sh
8282
```
8383

8484
</Tab>
@@ -87,7 +87,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
8787

8888
```terminal showLineNumbers=false
8989
# Note the `v` prefixing the version number and the `-rc` suffix
90-
iwr 'https://mcp.apollo.dev/download/win/v0.7.4-rc.1' | iex
90+
iwr 'https://mcp.apollo.dev/download/win/v1.1.1-rc.1' | iex
9191
```
9292
</Tab>
9393

@@ -124,14 +124,14 @@ To download a **specific version** of Apollo MCP Server (recommended for CI envi
124124

125125
```bash
126126
# Note the `v` prefixing the version number
127-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4
127+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1
128128
```
129129

130130
To download a specific version of Apollo MCP Server that is a release candidate:
131131

132132
```bash
133133
# Note the `v` prefixing the version number and the `-rc` suffix
134-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4-rc.1
134+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1-rc.1
135135
```
136136

137137
<Note>

flake.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@
181181
# Use Streamable HTTP transport by default, bound to all addresses
182182
"APOLLO_MCP_TRANSPORT__TYPE=streamable_http"
183183
"APOLLO_MCP_TRANSPORT__ADDRESS=0.0.0.0"
184-
"APOLLO_MCP_TRANSPORT__PORT=${builtins.toString http-port}"
185184
];
186185
WorkingDir = "/data";
187186

scripts/nix/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BINARY_DOWNLOAD_PREFIX="${APOLLO_MCP_SERVER_BINARY_DOWNLOAD_PREFIX:="https://git
1414

1515
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1616
# Note: Change this line manually during the release steps.
17-
PACKAGE_VERSION="v1.1.0"
17+
PACKAGE_VERSION="v1.1.1"
1818

1919
download_binary_and_run_installer() {
2020
downloader --check

scripts/windows/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1010
# Note: Change this line manually during the release steps.
11-
$package_version = 'v1.1.0'
11+
$package_version = 'v1.1.1'
1212

1313
function Install-Binary($apollo_mcp_server_install_args) {
1414
$old_erroractionpreference = $ErrorActionPreference

0 commit comments

Comments
 (0)