How to modify Docker configuration file in Kubernetes to resolve "Ctrl+p" keys?

6/16/2019

ctrl+p is commonly used as up arrow, however same combination is the detach sequence for docker. This need to be configured in the coniguration file

.docker/config.json

as described here docker change Ctrl+p to something else?

How do we configure these keys when using kubernetes ?

-- Nabil Sham
docker
kubernetes

1 Answer

6/17/2019

Kubernetes has no such operation, all containers run in the background. You can connect in but it’s always still running the same way.

-- coderanger
Source: StackOverflow