33

发出时grunt shell:test,我收到警告“输入设备不是 TTY”并且不想使用-f

$ grunt shell:test
Running "shell:test" (shell) task
the input device is not a TTY
Warning: Command failed: /bin/sh -c ./run.sh npm test
the input device is not a TTY
 Use --force to continue.

Aborted due to warnings.

这是Gruntfile.js命令:

shell: {
  test: {
    command: './run.sh npm test'
  }

这是run.sh

#!/bin/sh
# should use the latest available image to validate, but not LATEST
if [ -f .env ]; then
  RUN_ENV_FILE='--env-file .env'
fi
docker run $RUN_ENV_FILE -it --rm --user node -v "$PWD":/app -w /app yaktor/node:0.39.0 $@

这是package.json scripts与命令相关的test

"scripts": {
  "test": "mocha --color=true -R spec test/*.test.js && npm run lint"
}

我怎样才能gruntdockerTTY 感到满意?./run.sh npm test在 grunt 之外执行工作正常:

$ ./run.sh npm test

> yaktor@0.59.2-pre.0 test /app
> mocha --color=true -R spec test/*.test.js && npm run lint


[snip]

  105 passing (3s)


> yaktor@0.59.2-pre.0 lint /app
> standard --verbose
4

2 回答 2

72

-t从 docker run 命令中删除:

docker run $RUN_ENV_FILE -i --rm --user node -v "$PWD":/app -w /app yaktor/node:0.39.0 $@

告诉docker-t配置 tty,如果您没有 tty 并尝试附加到容器,这将不起作用(默认情况下,当您不执行 a 时-d)。

于 2016-11-10T20:59:09.643 回答
7

这解决了我一个恼人的问题。脚本有以下几行:

docker exec **-it**  $( docker ps | grep mysql | cut -d' ' -f1)  mysql --user= ..... > /var/tmp/temp.file
mutt -s "File is here" someone@somewhere.com < /var/tmp/temp.file

如果直接运行该脚本将运行良好,并且邮件将带有正确的输出。但是,从cron, ( crontab -e) 运行时,邮件将没有内容。围绕权限、shell 和路径等尝试了很多东西。但是没有乐趣!

终于找到了这个:

*/20 * * * * scriptblah.sh > $HOME/cron.log 2>&1

在那个cron.log文件上找到了这个输出:

输入设备不是 TTY

搜索把我带到了这里。在我删除之后-t,它现在工作得很好!

docker exec **-i**  $( docker ps | grep mysql | cut -d' ' -f1)  mysql --user= ..... > /var/tmp/temp.file
于 2017-10-05T14:13:04.190 回答