Docker for OS X no interactive terminal

Expected behavior

docker run -t ubuntu:14.04 /bin/bash
ls

Expected: directory listing

Actual behavior

ls hangs. Not just ls. Any command. Almost as though STDIN/STDOUT didn’t get piped correctly.

Information

Diagnostic Id: AEFF2B00-3419-4168-9C8E-27D527DB8325
OSX 10.11.5

Steps to reproduce the behavior

  1. docker run -t ubuntu:14.04 /bin/bash
  2. ls

You might consider adding the -i (interactive) flag to your command line, e.g.

docker run -it ubuntu:14.04 /bin/bash

Thanks! Totally missed that. New to Docker. Thanks for the hand.