Skip to content

Commit 88532de

Browse files
use detach
1 parent 981be25 commit 88532de

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,18 @@ jobs:
4040
4141
- name: Start container
4242
run: |
43-
docker run -e TOOLS_MODE=FOR_DATA_PATTERNS \
43+
docker run \
44+
--detach \
45+
-e TOOLS_MODE=FOR_DATA_PATTERNS \
4446
-e DREMIO_URI=https://fake \
4547
-e DREMIO_OAUTH_SUPPORTED=false \
4648
-p 6789:6789 \
47-
--name mcp --rm \
49+
--name mcp \
50+
--rm \
4851
--network host \
4952
dremio-mcp-server:${{ github.sha }} \
5053
dremio-mcp-server run --enable-streaming-http --port 6789 --no-log-to-file \
51-
--enable-json-logging &
54+
--enable-json-logging
5255
5356
- name: Test container
5457
run: |

0 commit comments

Comments
 (0)