Browse Source

refactor: simplify entrypoint-user.sh

The code changes remove unnecessary lines and simplify the logic in the entrypoint-user.sh script. The tail command is now used directly to follow log files instead of checking for command-line arguments.
pull/22/head
Daniel Gibbs 2 years ago
parent
commit
8b82d200e9
  1. 10
      entrypoint-user.sh

10
entrypoint-user.sh

@ -50,12 +50,4 @@ sleep 5
sleep 2
echo -e "Tail log files"
echo -e "================================="
echo "DOLLAR0 $0"
echo "DOLLAR1 $1"
if [ -n "$1" ]; then
exec "$@"
else
tail -F log/*/*.log
fi
exec "$@"
tail -F log/*/*.log

Loading…
Cancel
Save