File: docker-compose.yml

package info (click to toggle)
dd-opentracing-cpp 1.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,336 kB
  • sloc: cpp: 44,895; sh: 697; ansic: 27; makefile: 20
file content (21 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: "3.2"
services:
  dd-opentracing-cpp-example:
    build:
      context: ./
    environment:
      - DD_AGENT_HOST=dd-agent
    depends_on:
      - dd-agent
  dd-agent:
    volumes:
      - '/var/run/docker.sock:/var/run/docker.sock:ro'
      - '/proc/:/host/proc/:ro'
      - '/sys/fs/cgroup/:/host/sys/fs/cgroup:ro'
    environment:
      - 'DD_APM_ENABLED=true'
      - 'DD_LOG_LEVEL=error'
      - DD_API_KEY
    image: 'datadog/agent'
    ports:
        - "127.0.0.1:8126:8126"