I am running docker container in RedHat 8. In my docker container, I exposed port 8080 for accessible from outside. I can able to telnet 8080 from other servers but I cannot able to telnet 8080 from host server by IP address.
[root@redhat1 biz]# cat docker-compose.yml
version: '3'
services:
web:
image: nginx:latest
ports:
- "8080:80"
links:
- php
php:
image: php:7-fpm
Exposed port 8080 cannot accessible from the host server by using IP address. It can able to telnet 8080 by localhost or 127.0.0.1.
Telnet 8080 from other server by IP address is OK.
Check the host server's firewall settings on firewalld for the port 8080 incoming.
You may need to modify the iptables rules on your host to permit connections from Docker containers. Something like this will do the trick:
iptables -A INPUT -i docker0 -j ACCEPT
This would allow access to any ports on the host from Docker containers.iptables rules are ordered, and this rule may, or may not perform what you would like to depending on other rules which come before this.
you will only be able to access host services that are either, listening on INADDR_ANY for example, 0.0.0.0 or that are explicitly listening on the docker0 interface.