Ho una configurazione in cui eseguo tutte le parti del mio sito Web in contenitori docker. Il mio nginx che è in ascolto sulla porta 80 e 443 viene eseguito in un contenitore.
363292a98545 scivm/nginx-django-scivmcom:latest /usr/bin/supervisord 12 days ago Ghost 0.0.0.0:40001->22/tcp, 88.198.57.112:443->443/tcp, 88.198.57.112:80->80/tcp lonely_feynmann
Voglio impostare un proxy per un servizio in un altro contenitore. Questo contenitore è associato alla porta 3000 sull'host:
b38c8ef72d0a mazzolino/strider-dind:latest wrapdocker /usr/bin/ 41 minutes ago Up 41 minutes 0.0.0.0:3000->3000/tcp, 22/tcp, 27017/tcp distracted_einstein
I miei iptables sull'host docker si presentano così:
root@Ubuntu-1204-precise-64-minimal /var/run # iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:https
ACCEPT tcp -- anywhere anywhere tcp dpt:8000
DROP all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Dall'interno del contenitore, non riesco a collegarmi alla porta 3000 sul computer host a causa della configurazione di iptables.
Non voglio aprire la porta 3000 a Internet pubblico.
C'è un modo per aprire un ponte diretto tra il contenitore e l'host sulla porta 3000?
O dovrei modificare i miei iptables per accettarli dalla gamma ip docker?