OS: Red Hat Enterprise Linux Workstation release 7.2 (Maipo)
Kernel: Linux xxxxx.xxxxx.com 3.10.0-327.18.2.el7.x86_64 #1 SMP Fri Apr 8 05:09:53 EDT 2016 x86_64 x86_64 x86_64 GNU/Linux
Client:
Version: 1.11.2
API version: 1.23
Go version: go1.5.4
Git commit: b9f10c9
Built: Wed Jun 1 21:23:11 2016
OS/Arch: linux/amd64
Server:
Version: 1.11.2
API version: 1.23
Go version: go1.5.4
Git commit: b9f10c9
Built: Wed Jun 1 21:23:11 2016
OS/Arch: linux/amd64
To Reproduce:
build simple docker image from folllowing Dockerfile:
FROM centos:7
ENV container docker
RUN yum -y install httpd; yum clean all; systemctl enable httpd
CMD [ â/sbin/initâ ]
Build using: docker build -t local/stoptest:v1 .
Run using: docker run --privileged -ti --stop-signal=RTMIN+3 -p 80:80 local/stoptest:v1
verify working by browsing to localhost port 80 http://localhost
Issues:
-
Upon start it kicks me to a virtual console login prompt. Sometimes I can return to my original Gnome 3 session sometimes it eventually returns to the gnome login prompt.
-
docker stop does not stop container. Container just seems to hang. âdocker psâ shows the container is still running, but nothing can connect or use the container.
The only way to stop the container that I found was to issue a âsystemctl stop dockerâ.
Anyone know whatâs going on here? I though this was suppose to be fixed?