1version: '3'2services:3 unique-chain:4 build: 5 context: .6 environment:7 - JAEGER_AGENT_HOST=jaeger8 - JAEGER_AGENT_PORT=68319 volumes:10 - ..:/workspaces/unique-chain:cached11 - ../../polkadot:/workspaces/polkadot:cached12 - ../../polkadot-launch:/workspaces/polkadot-launch:cached13 14 cap_add:15 - SYS_PTRACE16 security_opt:17 - seccomp:unconfined18 command: /bin/sh -c "while sleep 1000; do :; done"19 jaeger:20 image: jaegertracing/all-in-one:latest21 ports:22 - "6831:6831/udp"23 - "16686:16686"