Unresponsive container

Issue #229 invalid
Erik Stephens created an issue

With this docker-compose.yml:

version: '3.3'
services:
  poste:
    image: analogic/poste.io:1
    volumes:
      - ./var/poste:/data:cached
    environment:
      HTTPS: 'OFF'
    expose:
      - '25'
      - '80'
      - '110'
      - '143'
      - '465'
      - '587'
      - '993'
      - '995'
      - '4190'

and docker 17.07.0-ce on a mac, the container quickly becomes unresponsive and even unable to stop or remove it:

$ docker exec poste ps auxfw
rpc error: code = Unknown desc = oci runtime error: exec failed: container_linux.go:262: starting container process caused "process_linux.go:81: executing setns process caused \"exit status 15\""

$ docker rm -f poste
(times out)

Could be issue on my end or docker's but I have decent amount of experience with containers & docker. This is the first image where I've experienced this kind of zombie container behavior.

Thanks!

Comments (1)

  1. Log in to comment