Lab issue: Terminal doesn't respond

Hi Team,
I found an issue with the terminal while taking quiz #15 ( Run a container with the nginx:1.14-alpine image and name it webapp)
After executing command docker run --name webapp nginx:1.14-alpine the terminal doesn’t display any output or no activity on the screen.

Is it a known issue? if not, can you rectify it?

Thanks,
Siva

Hi @saha94
Kindly try again by running the container in the detached mode as below :

docker run -d --name webapp nginx:1.14-alpine

1 Like