Docker exec: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:
Attaches to a running container.
Attaches to a running container.


<pre>
docker exec [-u <''uid''>] -it <''running-container-name-or-ID''> bash
docker exec [-u <''uid''>] -it <''running-container-name-or-ID''> bash  
</pre>


=Options=
=Options=

Revision as of 03:27, 5 December 2017

External

Internal

Overview

Attaches to a running container.

docker exec [-u <uid>] -it <running-container-name-or-ID> bash

Options

-i

Interactive.

-t

Allocated pseudo-TTY

Scenarios

Attach to a Running Container

As the current user:

docker exec -it <container-id> /bin/bash

As root:

docker exec -u 0 -it <container-id> /bin/bash