Do not always allocate a tty on connect

This commit is contained in:
Loïc Guitaut
2015-09-21 10:15:00 +02:00
parent ec3aa1fe0f
commit 5cced02b01
2 changed files with 4 additions and 3 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.mysql.l mysql --user=mysql --password=$password --database=l"
assert_output "docker exec -i -t dokku.mysql.l mysql --user=mysql --password=$password --database=l"
}