No se pudo determinar de manera confiable el nombre de dominio completo del servidor ... ¿Cómo resolverlo en Docker?

Estoy empezando en Docker y estaba siguiendo esotutorial que muestra básicamente estos pasos:

Cree un Dockerfile como este:

From php:7.0-apache copy src/ /var/www/html EXPOSE 80

Construya el contenedor desde donde tengo mi dockerfile:

$ docker build -t mytest .

Después de que se genera la imagen "mytest", la ejecuto con:

$ docker run -p 80 mytest

Eso es lo que obtengo como error:

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
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
[Sun Sep 17 16:25:12.340564 2017] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.10 (Debian) PHP/7.0.23 configured -- resuming normal operations
[Sun Sep 17 16:25:12.340666 2017] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'

Entonces, no sé cómo resolverlo. ¿Alguna ayuda?

Respuestas a la pregunta(4)

Su respuesta a la pregunta