Dashboard/Docker Networks

Docker network discovery

ProxyOS automatically joins Docker networks containing running containers so upstreams are reachable by container name.

homelab-edgewell-known
A shared bridge network ProxyOS creates automatically. Attach your containers to it so they're reachable by name — no per-route network config needed.
Add to your compose file
services:
  my-app:
    image: my-app:latest
    networks:
      - homelab-edge

networks:
  homelab-edge:
    external: true
Settings
Auto-join networks
Automatically connect to Docker networks containing running containers
Leave empty networks
Disconnect from networks when they no longer have running containers
Discovered networks
Loading…