tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to run a Command in running Container

How to run a Command in running Container

Author: Venkata Sudhakar

Docker is an open platform to develop, ship, and run containerized applications. It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to run a Command in running Container.

01C:\>docker exec --help
02 
03Usage:  docker exec [OPTIONS] CONTAINER COMMAND [ARG...]
04 
05Run a command in a running container
06 
07Options:
08  -d, --detach               Detached mode: run command in the background
09      --detach-keys string   Override the key sequence for detaching a
10                             container
11  -e, --env list             Set environment variables
12      --env-file list        Read in a file of environment variables
13  -i, --interactive          Keep STDIN open even if not attached
14      --privileged           Give extended privileges to the command
15  -t, --tty                  Allocate a pseudo-TTY
16  -u, --user string          Username or UID (format:
17                             <name|uid>[:<group|gid>])
18  -w, --workdir string       Working directory inside the container
19 
20C:\>docker exec -it ea3ee8f5f033 /bin/bash
21jenkins@ea3ee8f5f033:/$ cat /var/jenkins_home/secrets/initialAdminPassword
22admin_secret_password
23jenkins@ea3ee8f5f033:/$
24 
25 
26C:\>docker run --help
27 
28Usage:  docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
29 
30Run a command in a new container
31 
32C:\>docker run busybox ping bethecoder.com
33PING bethecoder.com (172.67.160.148): 56 data bytes
3464 bytes from 172.67.160.148: seq=0 ttl=37 time=676.792 ms
3564 bytes from 172.67.160.148: seq=1 ttl=37 time=416.541 ms
3664 bytes from 172.67.160.148: seq=2 ttl=37 time=418.229 ms
3764 bytes from 172.67.160.148: seq=3 ttl=37 time=555.491 ms
3864 bytes from 172.67.160.148: seq=4 ttl=37 time=418.092 ms
3964 bytes from 172.67.160.148: seq=5 ttl=37 time=501.077 ms
4064 bytes from 172.67.160.148: seq=6 ttl=37 time=413.216 ms

 
  


  
bl  br