소스 정보
- 저장소
- taracodlabs/aiden
- 최근 소스 활동
- 2026년 7월 4일 07:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 796
- 포크
- 140
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/taracodlabs/aiden --skill docker-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | docker-management |
| description | Docker containers, images, volumes, networks (CLI + Dockerode) |
| category | developer |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | docker, containers, images, volumes, networks, compose, dockerode, devops, deployment |
| metadata | {"aiden":{"required_binaries":["[Truncated]"]}} |
Manage Docker containers, images, volumes, and networks using the Docker CLI or Dockerode (Node.js Docker API client already in DevOS).
# Running containers
docker ps
# All containers including stopped
docker ps -a --format "table {{.Names}}\t{{.Status}}\t{{.Image}}\t{{.Ports}}"
docker start my-container
docker stop my-container
docker restart my-container
# Stop all running containers
docker stop $(docker ps -q)
# Last 100 lines
docker logs my-container --tail 100
# Follow live output
docker logs my-container --follow --tail 50
# List images
docker images
# Pull latest image
docker pull nginx:latest
# Remove image
docker rmi nginx:latest
# Build from Dockerfile in current directory
docker build -t my-app:v1 .
# Live resource stats (CPU, memory, network)
docker stats --no-stream
# Inspect a specific container
docker inspect my-container | python -m json.tool
# List volumes
docker volume ls
# List networks
docker network ls
# Remove unused volumes (reclaim disk)
docker volume prune -f
# Remove stopped containers, unused images, and networks
docker system prune -f
# Interactive shell
docker exec -it my-container /bin/bash
# Run a single command
docker exec my-container cat /etc/nginx/nginx.conf
# Start all services defined in docker-compose.yml
docker compose up -d
# View logs for all services
docker compose logs -f
# Stop and remove containers
docker compose down
# Rebuild and restart a specific service
docker compose up -d --build api
// Already available in DevOS dependencies
const Dockerode = require('dockerode')
const docker = new Dockerode()
const containers = await docker.listContainers({ all: true })
containers.forEach(c => console.log(c.Names[0], c.State, c.Image))
const container = docker.getContainer('my-container')
await container.restart()
console.log('Restarted')
"Show me all running containers and their ports"
→ Use step 1 with docker ps and the format string.
"The nginx container seems slow — show me its CPU and memory usage"
→ Use step 5 with docker stats --no-stream filtered to the nginx container.
"Rebuild and restart the API service after my code change"
→ Use step 8: docker compose up -d --build api.
docker system prune removes ALL stopped containers, unused images, and networks — confirm with the user firstdocker stop $(docker ps -q) stops ALL running containers — confirm which containers to stopdocker compose or Kubernetes over direct docker run commands--tail to limit output for inspection