Skip to content

Commit

Permalink
fix(devnet): Fix build workflow for devnet (#2125)
Browse files Browse the repository at this point in the history
* fix Dockerfiles

* remove DS_Store
  • Loading branch information
timwu20 committed Jan 4, 2022
1 parent e7207ed commit 0375fc2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Binary file removed cmd/gossamer/.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions devnet/alice.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ WORKDIR /gossamer/devnet

RUN go run cmd/update-dd-agent-confd/main.go -n=${METRICS_NAMESPACE} -t=key:alice > /etc/datadog-agent/conf.d/openmetrics.d/conf.yaml

WORKDIR /gossamer

ENTRYPOINT service datadog-agent start && gossamer --key=alice --babe-lead --publish-metrics --rpc --rpc-external=true --pubdns=alice

EXPOSE 7001/tcp 8545/tcp 8546/tcp 8540/tcp 9876/tcp
2 changes: 2 additions & 0 deletions devnet/bob.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ WORKDIR /gossamer/devnet

RUN go run cmd/update-dd-agent-confd/main.go -n=${METRICS_NAMESPACE} -t=key:${key} > /etc/datadog-agent/conf.d/openmetrics.d/conf.yaml

WORKDIR /gossamer

ENTRYPOINT service datadog-agent start && gossamer --key=${key} --bootnodes=/dns/alice/tcp/7001/p2p/12D3KooWMER5iow67nScpWeVqEiRRx59PJ3xMMAYPTACYPRQbbWU --publish-metrics --rpc --pubdns=${key}

EXPOSE 7001/tcp 8545/tcp 8546/tcp 8540/tcp 9876/tcp

0 comments on commit 0375fc2

Please sign in to comment.