mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 19:53:58 +00:00
* Update CODEOWNERS to use teams (#9129) * Update CODEOWNERS to use teams Update the `CODEOWNERS` file to use the @tendermint/tendermint-engineering and @tendermint/tendermint-research teams as opposed to adding people one by one. This makes repository administration somewhat easier to manage, especially when onboarding/offboarding people. Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add Ethan as superuser Signed-off-by: Thane Thomson <connect@thanethomson.com> * Prepare `main` to become new default branch (#9095) * Update Makefile with changes from #7372 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Sync main GitHub config with master and update Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unnecesary dot folders Signed-off-by: Thane Thomson <connect@thanethomson.com> * Sync dotfiles Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unused Jepsen tests for now Signed-off-by: Thane Thomson <connect@thanethomson.com> * tools: remove k8s (#6625) Remove mintnet as discussed on team call. closes #1941 * Restore nightly fuzz testing of P2P addrbook and pex Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix YAML lints Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix YAML formatting nits Signed-off-by: Thane Thomson <connect@thanethomson.com> * More YAML nits Signed-off-by: Thane Thomson <connect@thanethomson.com> * github: fix linter configuration errors and occluded errors (#6400) * Minor fixes to OpenAPI spec to sync with structs on main Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove .github/auto-comment.yml - does not appear to be used Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add issue config with link to discussions Signed-off-by: Thane Thomson <connect@thanethomson.com> * Adjust issue/PR templates to suit current process Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unused RC branch config from release workflow Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix wildcard matching in build jobs config Signed-off-by: Thane Thomson <connect@thanethomson.com> * Document markdownlint config Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore manual E2E test group config Signed-off-by: Thane Thomson <connect@thanethomson.com> * Document linter workflow with local execution instructions Signed-off-by: Thane Thomson <connect@thanethomson.com> * Document and fix minor nit in Super-Linter markdownlint config Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update .github/ISSUE_TEMPLATE/bug-report.md Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> * Update pull request template to add language around discussions/issues Signed-off-by: Thane Thomson <connect@thanethomson.com> * .golangci.yml: Deleted commented-out lines Signed-off-by: Thane Thomson <connect@thanethomson.com> * ci: Drop "-2" from e2e-nightly-fail workflow Signed-off-by: Thane Thomson <connect@thanethomson.com> * Address triviality concern in PR template Signed-off-by: Thane Thomson <connect@thanethomson.com> Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: Thane Thomson <connect@thanethomson.com> Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com>
67 lines
1.3 KiB
YAML
67 lines
1.3 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
node0:
|
|
container_name: node0
|
|
image: "tendermint/localnode"
|
|
ports:
|
|
- "26656-26657:26656-26657"
|
|
environment:
|
|
- ID=0
|
|
- LOG=${LOG:-tendermint.log}
|
|
volumes:
|
|
- ./build:/tendermint:Z
|
|
networks:
|
|
localnet:
|
|
ipv4_address: 192.167.10.2
|
|
|
|
node1:
|
|
container_name: node1
|
|
image: "tendermint/localnode"
|
|
ports:
|
|
- "26659-26660:26656-26657"
|
|
environment:
|
|
- ID=1
|
|
- LOG=${LOG:-tendermint.log}
|
|
volumes:
|
|
- ./build:/tendermint:Z
|
|
networks:
|
|
localnet:
|
|
ipv4_address: 192.167.10.3
|
|
|
|
node2:
|
|
container_name: node2
|
|
image: "tendermint/localnode"
|
|
environment:
|
|
- ID=2
|
|
- LOG=${LOG:-tendermint.log}
|
|
ports:
|
|
- "26661-26662:26656-26657"
|
|
volumes:
|
|
- ./build:/tendermint:Z
|
|
networks:
|
|
localnet:
|
|
ipv4_address: 192.167.10.4
|
|
|
|
node3:
|
|
container_name: node3
|
|
image: "tendermint/localnode"
|
|
environment:
|
|
- ID=3
|
|
- LOG=${LOG:-tendermint.log}
|
|
ports:
|
|
- "26663-26664:26656-26657"
|
|
volumes:
|
|
- ./build:/tendermint:Z
|
|
networks:
|
|
localnet:
|
|
ipv4_address: 192.167.10.5
|
|
|
|
networks:
|
|
localnet:
|
|
driver: bridge
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 192.167.10.0/16
|