git.delta.rocks / unique-network / refs/commits / 0d52e2cbc000

difftreelog

source

.devcontainer/docker-compose.yml609 Bsourcehistory
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      #- ../../frontier:/workspaces/frontier14    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"