Title here
Summary here
roji can monitor multiple Docker networks at the same time, allowing you to organize services into separate network groups.
Specify multiple networks as a comma-separated list:
# ~/.config/roji/config.yaml
network: web,api,internalROJI_NETWORK=web,api,internalsudo roji --network web,api,internalCreate the networks before starting:
docker network create web
docker network create apiOr use roji doctor --fix to create missing networks automatically.
# frontend/docker-compose.yml
services:
app:
image: nginx:alpine
networks:
- web
networks:
web:
external: true# backend/docker-compose.yml
services:
api:
image: my-api
networks:
- api
networks:
api:
external: trueBoth services are accessible via roji:
https://app.dev.localhost (web network)https://api.dev.localhost (api network)The dashboard displays a network badge on each route, showing which network the container belongs to.