2019-09-03 12:48:46 UTC - Ahmet Uyar: Hi guys, Can we access a running openwhisk container with docker exec? When I execute following command on a running container: "docker exec -it <container-id> bash", It just hangs, until the container is deleted. The shell is blocked. When I do the same on a prewarmed container, then I can get into the container. Is there a way to look into a running container? thanks. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1567514926033400 ---- 2019-09-03 13:00:27 UTC - Rodric Rabbah: a container that has executed a function is in a _paused_ state, you cant exec into it… if you want to do that, you can modify the invoker code to disable the pause, or unpause the container first then exec into it https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1567515627034300 ---- 2019-09-03 13:03:31 UTC - Ahmet Uyar: thanks https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1567515811034500 ---- 2019-09-03 13:11:53 UTC - Ahmet Uyar: when I execute docker resume from command line, it does not seem to work: docker-runc resume d862790caf61b19df6b78ff678c9a3e277c52e268c8568010e94ce20496184c3container d862790caf61b19df6b78ff678c9a3e277c52e268c8568010e94ce20496184c3 does not exist one or more of container resume failed https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1567516313035200 ----