mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
localnet: fix $LOG variable (#3423)
Fixes #3421 Before: it was creating a file named ${LOG:-tendermint.log} in .build/nodeX After: it creates a file named tendermint.log
This commit is contained in:
parent
4cbd36f341
commit
a59930a327
@ -8,7 +8,7 @@ services:
|
|||||||
- "26656-26657:26656-26657"
|
- "26656-26657:26656-26657"
|
||||||
environment:
|
environment:
|
||||||
- ID=0
|
- ID=0
|
||||||
- LOG=$${LOG:-tendermint.log}
|
- LOG=${LOG:-tendermint.log}
|
||||||
volumes:
|
volumes:
|
||||||
- ./build:/tendermint:Z
|
- ./build:/tendermint:Z
|
||||||
networks:
|
networks:
|
||||||
@ -22,7 +22,7 @@ services:
|
|||||||
- "26659-26660:26656-26657"
|
- "26659-26660:26656-26657"
|
||||||
environment:
|
environment:
|
||||||
- ID=1
|
- ID=1
|
||||||
- LOG=$${LOG:-tendermint.log}
|
- LOG=${LOG:-tendermint.log}
|
||||||
volumes:
|
volumes:
|
||||||
- ./build:/tendermint:Z
|
- ./build:/tendermint:Z
|
||||||
networks:
|
networks:
|
||||||
@ -34,7 +34,7 @@ services:
|
|||||||
image: "tendermint/localnode"
|
image: "tendermint/localnode"
|
||||||
environment:
|
environment:
|
||||||
- ID=2
|
- ID=2
|
||||||
- LOG=$${LOG:-tendermint.log}
|
- LOG=${LOG:-tendermint.log}
|
||||||
ports:
|
ports:
|
||||||
- "26661-26662:26656-26657"
|
- "26661-26662:26656-26657"
|
||||||
volumes:
|
volumes:
|
||||||
@ -48,7 +48,7 @@ services:
|
|||||||
image: "tendermint/localnode"
|
image: "tendermint/localnode"
|
||||||
environment:
|
environment:
|
||||||
- ID=3
|
- ID=3
|
||||||
- LOG=$${LOG:-tendermint.log}
|
- LOG=${LOG:-tendermint.log}
|
||||||
ports:
|
ports:
|
||||||
- "26663-26664:26656-26657"
|
- "26663-26664:26656-26657"
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user