mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 13:26:23 +00:00
* ci: fix super-linter configuration settings (#7708)
- Revert the version pin from #7706.
- Override the YAML linter config to be more forgiving.
- Update YAML lint warnings in a number of files.
The choice of which lints to fix and which to override was ad hoc: I fixed the ones that were mainly whitespace oriented, and suppressed the ones that were document-structure related.
Fixes #7707.
(cherry picked from commit 5eb50a43b5)
* Resolve cherry-pick conflicts.
Co-authored-by: M. J. Fromberger <fromberger@interchain.io>
70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
node0:
|
|
container_name: node0
|
|
image: "tendermint/localnode"
|
|
ports:
|
|
- "26656-26657:26656-26657"
|
|
- "6060:6060"
|
|
- "27000:26660"
|
|
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
|