Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 303 Bytes

File metadata and controls

9 lines (8 loc) · 303 Bytes

Docker

Cleanup networks without containers attached and only created by docker-compose

docker network ls -q \
    | xargs docker network inspect \
    | jq -r '.[] | select((.Containers|length == 0) and (.Labels|has("com.docker.compose.network")) ) | .Id' \
    | xargs docker network rm