We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111e3e9 commit 8b6c808Copy full SHA for 8b6c808
.github/workflows/build.yaml
@@ -7,6 +7,12 @@ on:
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
+ services:
11
+ docker:
12
+ image: docker:dind
13
+ options: --privileged
14
+ volumes:
15
+ - /var/run/docker.sock:/var/run/docker.sock
16
env:
17
MCP_SERVER_PORT: ${{ secrets.MCP_SERVER_PORT }}
18
YOUTUBE_API_KEY: ${{ secrets.YOUTUBE_API_KEY }}
community/youtube/build.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-docker run --rm -it --entrypoint sh \
+docker run --rm --entrypoint sh \
4
--volume /var/run/docker.sock:/var/run/docker.sock \
5
--workdir /app \
6
docker:dind \
0 commit comments