¿Cómo reiniciar apache2 sin bloquear el contenedor docker?

Estoy usando como base laphp docker container con la etiqueta:

php:5.6-apache

Cuando intento reiniciar el apache2 dentro del contenedor, el contenedor se detiene:

root@phalconapp:/var/www/html# service apache2 restart
Restarting web server: apache2Terminated
root@phaclonapp:/var/www/html#
me@myLocalComputer:

¿Cómo reiniciar apache2 sin detener el contenedor?

Quiero jugar con el contenedor y personalizarlo, antes de poner mis cambios en el dockerfile. Quiero instalar alguna extensión y para que funcionen necesito reiniciar Apache para que los cambios surtan efecto.

Este es el archivo de registro a través de:

Attaching to dltasklight_phlaconapp_1
phlaconapp_1 | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
phlaconapp_1 | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
phlaconapp_1 | [Mon May 30 10:19:24.556154 2016] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.10 (Debian) PHP/5.6.22 configured -- resuming normal operations
phlaconapp_1 | [Mon May 30 10:19:24.556181 2016] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
phlaconapp_1 | [Mon May 30 10:21:11.754993 2016] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down
dltasklight_phlaconapp_1 exited with code 0

Respuestas a la pregunta(5)

Su respuesta a la pregunta