Skip to content

Commit cb69327

Browse files
authored
Merge pull request #14 from subtrace/dev/sachin/docker.docs
docker: add docs for docker and docker compose
2 parents 0ff3fbf + 47efe12 commit cb69327

File tree

4 files changed

+85
-0
lines changed

4 files changed

+85
-0
lines changed

docker-compose.mdx

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: "Using Subtrace with Docker Compose"
3+
sidebarTitle: "Docker Compose"
4+
description: "Monitor requests in your Docker Compose app."
5+
icon: "docker"
6+
---
7+
8+
If you're using Docker Compose to run your app, you can use Subtrace to monitor
9+
all of your backend requests. Here's how you can get started:
10+
11+
<Steps>
12+
<Step>
13+
Make the following change to your `Dockerfile` to install and use Subtrace
14+
in your app's Docker image:
15+
16+
```diff
17+
- CMD ["node", "./app.js"]
18+
+ RUN curl -fsSLO https://subtrace.dev/download/latest/$(uname -s)/$(uname -m)/subtrace && chmod +x ./subtrace
19+
+ CMD ["./subtrace", "run", "--", "node", "./app.js"]
20+
```
21+
22+
</Step>
23+
24+
<Step>
25+
Add the following lines to your service's definition in your `compose.yaml`
26+
file, and then start your app as you nornmally would:
27+
28+
```yaml
29+
cap_add:
30+
- SYS_PTRACE
31+
```
32+
33+
</Step>
34+
35+
<Step>
36+
That's it! Open the `subt.link` URL in your browser to see your app's requests
37+
show up in real time:
38+
39+
<img className="rounded-xl" src="/subt-link-example.png" />
40+
41+
</Step>
42+
</Steps>

docker.mdx

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: "Using Subtrace with Docker"
3+
sidebarTitle: "Docker"
4+
description: "Track requests in your dockerized app with Subtrace."
5+
icon: "docker"
6+
---
7+
8+
If your app runs in a docker container, you can use Subtrace to monitor all its
9+
requests. Here's how you can get started:
10+
11+
<Steps>
12+
<Step>
13+
Make the following change to your `Dockerfile` to install and use Subtrace
14+
in your app's Docker image:
15+
16+
```diff
17+
- CMD ["node", "./app.js"]
18+
+ RUN curl -fsSLO https://subtrace.dev/download/latest/$(uname -s)/$(uname -m)/subtrace && chmod +x ./subtrace
19+
+ CMD ["./subtrace", "run", "--", "node", "./app.js"]
20+
```
21+
22+
</Step>
23+
24+
<Step>
25+
Run your Docker container as you normally would, but add `--cap-add=SYS_PTRACE`:
26+
27+
```diff
28+
- docker run -dt -p 3000:3000 node-app
29+
+ docker run -dt -p 3000:3000 --cap-add=SYS_PTRACE node-app
30+
```
31+
32+
</Step>
33+
34+
<Step>
35+
That's it! Open the `subt.link` URL in your browser to see your app's requests
36+
show up in real time:
37+
38+
<img className="rounded-xl" src="/subt-link-example.png" />
39+
40+
</Step>
41+
</Steps>

mint.json

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
"golang",
5757
"php-laravel",
5858
"macos",
59+
"docker",
60+
"docker-compose",
5961
"kubernetes"
6062
]
6163
},

subt-link-example.png

392 KB
Loading

0 commit comments

Comments
 (0)