Do not always allocate a tty on connect

This commit is contained in:
Loïc Guitaut
2015-09-21 10:12:55 +02:00
parent b26a612a50
commit 22fa6bd92d
2 changed files with 3 additions and 2 deletions

View File

@@ -25,6 +25,6 @@ teardown() {
export ECHO_DOCKER_COMMAND="true"
run dokku "$PLUGIN_COMMAND_PREFIX:connect" l
password="$(cat "$PLUGIN_DATA_ROOT/l/PASSWORD")"
assert_output "docker exec -it dokku.mongo.l mongo -u l -p $password --authenticationDatabase l l"
assert_output "docker exec -i -t dokku.mongo.l mongo -u l -p $password --authenticationDatabase l l"
}