Hi,
this line in docker-compose.yml seems wrong (also the LOG lines for the other nodes):
|
- LOG=$${LOG:-tendermint.log} |
This creates a logfile named ${LOG:-tendermint.log} in .build/node0 when running make localnet-start
Removing the first $ fixes the problem in my environment (Ubuntu 18.04.2):
- LOG=${LOG:-tendermint.log}
Best Regards,
Guido
Hi,
this line in docker-compose.yml seems wrong (also the LOG lines for the other nodes):
tendermint/docker-compose.yml
Line 11 in 9768195
This creates a logfile named ${LOG:-tendermint.log} in .build/node0 when running
make localnet-startRemoving the first
$fixes the problem in my environment (Ubuntu 18.04.2):- LOG=${LOG:-tendermint.log}Best Regards,
Guido