dockerd-syslog-wrapper.sh 93 B

1234
  1. #!/bin/sh
  2. "${@}" 2>&1 | while read -r LINE; do
  3. logger -t "$(basename "${1}")" "$LINE";
  4. done