Install
1
Install the plugin$
npx claudepluginhub danielrosehill/claude-code-plugins --plugin linux-desktop-mgmtWant just this command?
Then install: npx claudepluginhub u/[userId]/[slug]
Description
List and analyze Docker deployments:
Namespace
deployments/Command Content
List and analyze Docker deployments:
- List active deployments:
ls -la ~/docker-network/deployments/active/ - List inactive deployments:
ls -la ~/docker-network/deployments/inactive/ - Check running containers:
docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" - Check compose files:
find ~/docker-network/deployments/active -name "docker-compose.yml" -o -name "compose.yaml" - Review deployment git status:
for d in ~/docker-network/deployments/active/*; do echo "=== $d ===" && cd "$d" && git status --short; done - Check deployment resources:
docker ps --format "table {{.Names}}\t{{.Size}}" - Review deployment networks:
docker network ls - Check deployment volumes:
docker volume ls
Provide Daniel with:
- List of active deployments with status
- List of inactive deployments
- Running vs configured services
- Deployments with uncommitted changes
- Resource usage per deployment
- Network and volume usage
- Any deployments without git repositories
- Recommendations for deployment organization
- Suggestions for cleaning up unused deployments
- Reminders about atomic deployment principle
Stats
Stars1
Forks0
Last CommitNov 15, 2025