TomN
TomN

Reputation: 584

what is "-idt" option means in docker run

I had run few case of docker, run -idt appeared many times.

But in docker doc, run options are not include -idt

wish to figure it out what is it means? and what it for?

Upvotes: 0

Views: 1341

Answers (1)

Paul Becotte
Paul Becotte

Reputation: 9997

That is including three single level options into one batch.

-i interactive -d detached -t allocate a TTY

Upvotes: 2

Related Questions