$ docker ps | grep redis
eff366c1acb0 8 days ago Up 8 days (unhealthy) hdtl_data_redis.1.pfma6polo8
Try docker top command
$ docker top eff366c1acb0
Error response from daemon: Unexpected pid '100050root': strconv.Atoi: parsing "100050root": invalid syntax
Check maximum pid allowed
$ cat /proc/sys/kernel/pid_max
131072
Dumping processes, I can see after 99999, the pid and uid get joined in the output
(possibly related to how the docker top command is handling an internal function?)
Find a container
Try
docker top
commandCheck maximum pid allowed
Dumping processes, I can see after 99999, the pid and uid get joined in the output (possibly related to how the docker top command is handling an internal function?)
Dont seem to get this problem on dev because maxiumim pid is under 100k
Could a workaround be limiting pid to 99999 in docker for-azure image?