-
Notifications
You must be signed in to change notification settings - Fork 140
feat(cross-client): create docker-compose.yml for local devnet #2282
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
Merged
EclesioMeloJunior
merged 33 commits into
development
from
eclesio/cross-client-docker-compose
Mar 28, 2022
Merged
Changes from 30 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
6139712
feat: include substrate docker image
EclesioMeloJunior 8c3fb1d
chore: add substrate docker images
EclesioMeloJunior c0be6dc
chore: formatting and add depends on yaml key
EclesioMeloJunior eda4e4a
chore: add datadog stuff again
EclesioMeloJunior dae59e2
chore: use alice peer id
EclesioMeloJunior 6ccf8fb
chore: split substrate docker compose services into another file
EclesioMeloJunior 1407b3a
chore: enable prometheus external and add datadog
EclesioMeloJunior 0d59fac
Merge branch 'development' into eclesio/substrate-docker-image
EclesioMeloJunior 5108412
chore: keep substrate ports same as gossamer node ports
EclesioMeloJunior 9fa7ffb
chore: expose rpc and ws calls in substrate docker file
EclesioMeloJunior 71a8f5e
chore: use same dns name and p2p id
EclesioMeloJunior f1fea2d
chore: use same key for both alice gossamer and substrate nodes
EclesioMeloJunior 9b485f6
chore: fix dd golang cmd
EclesioMeloJunior cff9c8c
Update devnet/README.md
EclesioMeloJunior 262b329
Update devnet/README.md
EclesioMeloJunior 012b4b9
chore: update `substrate_alice` readme info
EclesioMeloJunior 1d158a3
Update devnet/README.md
EclesioMeloJunior f0689ee
chore: add `/tcp` to expose ports
EclesioMeloJunior 604ce4b
Merge branch 'eclesio/substrate-docker-image' of github.com:ChainSafe…
EclesioMeloJunior 237647a
chore: adjust args and envs
EclesioMeloJunior ae0429e
chore: pin prometheus version, add read only volume and add trailing …
EclesioMeloJunior 843d361
chore: improve README.md
EclesioMeloJunior bcb134e
Merge branch 'development' into eclesio/substrate-docker-image
EclesioMeloJunior 579136c
chore: add port 7001 explicitly
EclesioMeloJunior 17e4d2d
chore: use a custome entrypoint
EclesioMeloJunior f66898c
chore: update genesis with version 9100
EclesioMeloJunior e37cb77
Merge branch 'development' into eclesio/cross-client-docker-compose
EclesioMeloJunior a84b87d
chore: use only one genesis
EclesioMeloJunior ea33699
chore: remove `chain` argument from cross-client/docker-compose.yml
EclesioMeloJunior 65f1d31
chore: bind pprof port to bob gossamer node
EclesioMeloJunior 5350fc9
Merge branch 'development' into eclesio/cross-client-docker-compose
EclesioMeloJunior 8d86312
adding trailing new line
EclesioMeloJunior a735532
chore: add comment about ports
EclesioMeloJunior File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
services: | ||
alice: | ||
platform: linux/amd64 | ||
build: | ||
context: ./../.. | ||
dockerfile: devnet/alice.Dockerfile | ||
args: | ||
DD_API_KEY: ${DD_API_KEY} | ||
ports: | ||
- 7001 | ||
- 8545 | ||
- 8546 | ||
- 8540 | ||
- 9876 | ||
- 6060 | ||
EclesioMeloJunior marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
bob: | ||
platform: linux/amd64 | ||
build: | ||
context: ./../.. | ||
dockerfile: devnet/bob.Dockerfile | ||
args: | ||
key: bob | ||
DD_API_KEY: ${DD_API_KEY} | ||
ports: | ||
EclesioMeloJunior marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- 7001 | ||
- 8545 | ||
- 8546 | ||
- 8540 | ||
- 9876 | ||
- 6060 | ||
EclesioMeloJunior marked this conversation as resolved.
Show resolved
Hide resolved
|
||
depends_on: | ||
- alice | ||
|
||
charlie: | ||
platform: linux/amd64 | ||
build: | ||
context: ./../.. | ||
dockerfile: devnet/substrate_bob.Dockerfile | ||
args: | ||
key: charlie | ||
DD_API_KEY: ${DD_API_KEY} | ||
ports: | ||
EclesioMeloJunior marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- 7001 | ||
- 8545 | ||
- 8546 | ||
- 9876 | ||
depends_on: | ||
- alice | ||
EclesioMeloJunior marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.