Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README fixes #9

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Run the following command to start a new Docker container with `catadog`.

```
docker run --rm -d --name catadog ghcr.io/datadog/catadog
docker run --rm -it --publish 8128:8128 --name catadog ghcr.io/datadog/catadog
```

### Global command
Expand Down Expand Up @@ -178,7 +178,7 @@ bundle exec catadog | jq 'select(.kind=="rc") | .response.body.target_files | .[

## Using Docker Compose

By leveraging the `docker-compose.yaml` file, you can automatically connect your app to `catadog` and your datadog agent.
By leveraging the `docker-compose.yaml` file, you can automatically connect your app to `catadog` and your datadog agent.

First, [instrument your app](https://docs.datadoghq.com/tracing/trace_collection/automatic_instrumentation/dd_libraries/ruby/#instrument-your-application) with the datadog gem.

Expand Down Expand Up @@ -207,7 +207,7 @@ services:
image: datadog/agent
env_file:
- ".env"
environment:
environment:
- DD_APM_ENABLED=true
- DD_BIND_HOST=0.0.0.0
- DD_APM_NON_LOCAL_TRAFFIC=true
Expand Down