Skip to content

Commit

Permalink
Output versions of software to container logs on start (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Nov 1, 2023
1 parent c129293 commit ce318c4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ function main() {
function start() {
echo "Starting Stellar Quickstart"

echo "versions:"
echo " stellar-core:"
echo "$(stellar-core version 2>/dev/null | sed 's/^/ /')"
echo " horizon:"
echo "$(stellar-horizon version | sed 's/^/ /')"
echo " soroban-rpc:"
echo "$(stellar-soroban-rpc version | sed 's/^/ /')"

echo "mode: $STELLAR_MODE"
echo "network: $NETWORK"
echo "network passphrase: $NETWORK_PASSPHRASE"
Expand Down

0 comments on commit ce318c4

Please sign in to comment.