I have a docker container with apache and configured my .conf file with a virtual hosts, calling from the client test.dev the virtual host docker is not mapped. If I call localhost it works correctly.
Thanks!!
<VirtualHost *:80>
Servername test.dev
SetEnv APPLICATION_ENV "development"
DocumentRoot "/var/www/html/test/public"
<Directory "/var/www/html/test/public">
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
</VirtualHost>