Complete the command to open an interactive shell inside a running Docker container named 'myapp'.
docker exec -it myapp [1]The /bin/bash option opens a bash shell inside the container.
Complete the command to open a shell in a container with ID 'abc123' using sh shell.
docker exec -it abc123 [1]The /bin/sh is a lightweight shell available in many containers.
Fix the error in the command to open a shell in container 'webapp'.
docker exec -it [1] /bin/bashThe container name should be exactly 'webapp' without extra characters or spaces.
Fill both blanks to open a shell in container 'db' and keep the session interactive.
docker [1] -it [2] /bin/bash
docker exec runs a command in a running container, and db is the container name.
Fill all three blanks to open an interactive shell in container 'app1' using sh shell.
docker [1] [2] app1 [3]
docker exec -it app1 /bin/sh opens an interactive shell inside the running container named 'app1'.