I am currently trying to setup my homelab using podman and hosting multiple containers on a fedora server. The backend containers shall have no internet/host access but should be able to communicate between one another based on their container names. Their services are then callable via reverseproxy (in my case nginx) that is connected to the host and the various backend containers.
Self hosted dns provides the relevant subdomain routes. Sidenote: for reasons I have to do all the podman stuff as sudo - not related to the question. Also, SELinux is active.
To achieve that I tried to create 2 networks, both of type bridge and the backend one is internal: true
. Nginx is able to call the containers, the backend containers can't access the internet, but they can't reach each other. Within the backend network they are pingable, thus they are there, but name resolution fails. All docs/posts that I read so far stated that it should be possible the resolve the container names, thus what's going on? (Trying a nslookup in the backend container shows that the gateway is not reachable; but since it is on the same subnet this should work[?])
Stripped podman-compose file:
version: '3'
networks:
no-internet:
driver: bridge
internal: true
internet:
driver: bridge
services:
A:
container_name: A
networks:
- no-internet
depends_on:
- B
// Stuff related to A
B:
container_name: B
networks:
- no-internet
// Stuff related to B
proxy:
networks:
- no-internet
- internet
ports:
- 80:80
depends_on:
- A
// Stuff related to proxy
On my system, this happened because I had an instance of bind9 running on the host configured with
listen-on port 53 { any };
. This meant thatnamed
was binding to the host's IP on the podman-created internal network (10.88.0.1) on the same port 53 that aardvark-dns was trying to use, so it was preventing aardvark-dns from responding.The fix was to change
named.conf.options
to not bind onany
.