Skip to content

Commit c265b67

Browse files
r33drichardsclaude
andcommitted
Remove mcp-v8 from compose command sections
Now that the Dockerfile uses ENTRYPOINT for the binary, the compose command sections only need arguments. Also switch docker-compose.yml from pre-built image to build: . so CI tests the actual Dockerfile. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 25eb6fd commit c265b67

5 files changed

Lines changed: 1 addition & 10 deletions

docker-compose.cluster-stateless.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ services:
2525
node1:
2626
build: .
2727
command:
28-
- mcp-v8
2928
- --http-port=3000
3029
- --stateless
3130
- --cluster-port=4000
@@ -41,7 +40,6 @@ services:
4140
node2:
4241
build: .
4342
command:
44-
- mcp-v8
4543
- --http-port=3000
4644
- --stateless
4745
- --cluster-port=4000
@@ -57,7 +55,6 @@ services:
5755
node3:
5856
build: .
5957
command:
60-
- mcp-v8
6158
- --http-port=3000
6259
- --stateless
6360
- --cluster-port=4000

docker-compose.cluster.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ services:
2424
node1:
2525
build: .
2626
command:
27-
- mcp-v8
2827
- --http-port=3000
2928
- --directory-path=/data/heaps
3029
- --session-db-path=/data/sessions
@@ -43,7 +42,6 @@ services:
4342
node2:
4443
build: .
4544
command:
46-
- mcp-v8
4745
- --http-port=3000
4846
- --directory-path=/data/heaps
4947
- --session-db-path=/data/sessions
@@ -62,7 +60,6 @@ services:
6260
node3:
6361
build: .
6462
command:
65-
- mcp-v8
6663
- --http-port=3000
6764
- --directory-path=/data/heaps
6865
- --session-db-path=/data/sessions

docker-compose.single-node-stateful.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ services:
2323
node1:
2424
build: .
2525
command:
26-
- mcp-v8
2726
- --http-port=3000
2827
- --directory-path=/data/heaps
2928
- --session-db-path=/data/sessions

docker-compose.single-node.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ services:
2323
node1:
2424
build: .
2525
command:
26-
- mcp-v8
2726
- --http-port=3000
2827
- --stateless
2928
expose:

docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ services:
88
- ./policies:/policies:ro
99

1010
mcp-js:
11-
image: docker.io/wholelottahoopla/mcp-js:latest
11+
build: .
1212
command:
13-
- mcp-v8
1413
- --http-port=3000
1514
- --directory-path=/data/heaps
1615
- --session-db-path=/data/sessions

0 commit comments

Comments
 (0)