Я запускаю контейнеры докера с помощью docker-compose, контейнеры запускаются успешно. Docker-compose ps дает
db_1 docker-entrypoint.sh postgres Up (healthy) 0.0.0.0:2054->5432/tcp,:::2054->5432/tcp
db_2 docker-entrypoint.sh postgres Up (healthy) 0.0.0.0:2154->5432/tcp,:::2154->5432/tcp
nginx_1 /docker-entrypoint.sh ngin ... Up 0.0.0.0:443->443/tcp,:::443->443/tcp, 0.0.0.0:2081->80/tcp,:::2081->80/tcp, 0.0.0.0:2181->8080/tcp,:::2181->8080/tcp
php_1 docker-php-entrypoint php-fpm Up 0.0.0.0:9903->9000/tcp,:::9903->9000/tcp
supervisor_1 docker-php-entrypoint /usr ... Up 0.0.0.0:2347->2346/tcp,:::2347->2346/tcp, 9000/tcp
sudo iptables -L
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
DOCKER all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain DOCKER (1 references)
target prot opt source destination
Chain DOCKER-ISOLATION-STAGE-1 (1 references)
target prot opt source destination
DOCKER-ISOLATION-STAGE-2 all -- anywhere anywhere
RETURN all -- anywhere anywhere
Chain DOCKER-ISOLATION-STAGE-2 (1 references)
target prot opt source destination
DROP all -- anywhere anywhere
RETURN all -- anywhere anywhere
Chain DOCKER-USER (1 references)
target prot opt source destination
RETURN all -- anywhere anywhere
Порты докера доступны на машине с убунту - telnet 192.168.1.35 2081 -подключается
Но не видны с другой машины. В чем может быть дело?