Loading...
Loading...
Docker container debugging and management. Use when investigating container issues, checking logs, resource usage, or Docker Compose services.
npx skill4agent add incidentfox/incidentfox docker-debugging.claude/skills/infrastructure-docker/scripts/python .claude/skills/infrastructure-docker/scripts/container_ps.py [--all]python .claude/skills/infrastructure-docker/scripts/container_logs.py --container NAME_OR_ID [--tail 100]python .claude/skills/infrastructure-docker/scripts/container_inspect.py --container NAME_OR_IDpython .claude/skills/infrastructure-docker/scripts/container_stats.py [--container NAME_OR_ID]python .claude/skills/infrastructure-docker/scripts/image_list.py [--filter "reference=myapp*"]python .claude/skills/infrastructure-docker/scripts/compose_ps.py [--file docker-compose.yml] [--cwd /path]python .claude/skills/infrastructure-docker/scripts/compose_logs.py [--services "api,db"] [--tail 100]1. List containers: container_ps.py --all
2. Check logs: container_logs.py --container <name> --tail 200
3. Check resources: container_stats.py --container <name>
4. Inspect config: container_inspect.py --container <name>1. Check services: compose_ps.py
2. Check logs: compose_logs.py --services "api,worker" --tail 100