Skip to content

Commit 9318c67

Browse files
committed
Switch to docker/mcp-gateway image
Signed-off-by: Eddú Meléndez <[email protected]>
1 parent a0d5483 commit 9318c67

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/docker-compose.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ The following service connection factories are provided in the `spring-ai-spring
5656
| Containers named `semitechnologies/weaviate`, `cr.weaviate.io/semitechnologies/weaviate`
5757

5858
| `McpSseClientConnectionDetails`
59-
| Containers named `docker/agents_gateway`
59+
| Containers named `docker/mcp-gateway`
6060
|====

spring-ai-spring-boot-docker-compose/src/main/java/org/springframework/ai/docker/compose/service/connection/docker/DockerMcpGatewayDockerComposeConnectionDetailsFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/**
2828
* A {@link DockerComposeConnectionDetailsFactory} implementation that creates
29-
* {@link McpSseClientConnectionDetails} for a Docker Agent Gateway instance running in a
29+
* {@link McpSseClientConnectionDetails} for a Docker MCP Gateway instance running in a
3030
* Docker container.
3131
*
3232
* @author Eddú Meléndez
@@ -37,7 +37,7 @@ class DockerMcpGatewayDockerComposeConnectionDetailsFactory
3737
private static final int GATEWAY_PORT = 8811;
3838

3939
protected DockerMcpGatewayDockerComposeConnectionDetailsFactory() {
40-
super("docker/agents_gateway");
40+
super("docker/mcp-gateway");
4141
}
4242

4343
@Override
@@ -46,7 +46,7 @@ protected McpSseClientConnectionDetails getDockerComposeConnectionDetails(Docker
4646
}
4747

4848
/**
49-
* {@link McpSseClientConnectionDetails} backed by a {@code Docker Agents Gateway}
49+
* {@link McpSseClientConnectionDetails} backed by a {@code Docker MCP Gateway}
5050
* {@link RunningService}.
5151
*/
5252
static class DockerAgentsGatewayContainerConnectionDetails extends DockerComposeConnectionDetails

spring-ai-spring-boot-docker-compose/src/test/java/org/springframework/ai/docker/compose/service/connection/docker/DockerMcpGatewayDockerComposeConnectionDetailsFactoryIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class DockerMcpGatewayDockerComposeConnectionDetailsFactoryIT extends AbstractDockerComposeIT {
2727

2828
protected DockerMcpGatewayDockerComposeConnectionDetailsFactoryIT() {
29-
super("docker-agents-gateway-compose.yaml", DockerImageName.parse("docker/agents_gateway:v2"));
29+
super("docker-agents-gateway-compose.yaml", DockerImageName.parse("docker/mcp-gateway"));
3030
}
3131

3232
@Test

0 commit comments

Comments
 (0)