Executo um container docker com a imagem do ubuntu da seguinte forma:
docker run -it -p 8080:80 ubuntu/apache bash
Em seguida instalo o apache2 no container:
root@05102c326613:/# apt-get update && apt-get install -y apache2
Depois inicio o apache2
root@05102c326613:/# apachectl start
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
Porém, quando tento acessa o IP da minha máquina com a porta 8080 não acontece nada.
Alguém teve este problema?