소스 정보
- 저장소
- qhkm/zeptoclaw-skills
- 최근 소스 활동
- 2026년 2월 23일 00:29
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill docker-deploy명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | docker-deploy |
| version | 1.0.0 |
| description | Deploy, update, and manage Docker Compose services in production. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["docker","devops","deployment"] |
| metadata | {"zeptoclaw":{"emoji":"🐳","requires":{"anyBins":["docker"]}}} |
Deploy and manage containerized services with Docker and Docker Compose.
# Pull latest image and recreate changed containers only
docker compose pull && docker compose up -d
# Force recreate a single service
docker compose up -d --force-recreate --no-deps api
# Zero-downtime rolling update (requires a load balancer)
docker compose up -d --scale api=2 --no-recreate
docker compose up -d --scale api=1
# All services
docker compose ps
# Live logs (follow)
docker compose logs -f --tail=100 api
# Resource usage
docker stats --no-stream
# Inspect a container
docker inspect $(docker compose ps -q api)
# Run a one-off command in a running service
docker compose exec api bash
docker compose exec db psql -U postgres mydb
# Run migrations (one-off container)
docker compose run --rm api python manage.py migrate
# Copy a file out of a container
docker cp $(docker compose ps -q api):/app/logs/error.log ./error.log
# Hard restart (stop → rm → start)
docker compose down && docker compose up -d
# Remove stopped containers and unused images (safe)
docker system prune -f
# Also remove unused volumes (⚠️ check first)
docker volume ls
docker system prune -f --volumes
# Remove a specific image
docker rmi myapp:old-tag
# 1. Pull code changes on server
git pull origin main
# 2. Build new image (if building locally)
docker compose build --no-cache api
# 3. Apply without downtime
docker compose up -d --no-deps api
# 4. Verify it started
docker compose ps api
docker compose logs --tail=50 api
# 5. Rollback if bad
docker compose up -d --no-deps api --image myapp:previous-tag
--no-deps when restarting a single service — avoids restarting dependenciesdocker compose pull before up -d ensures you get the latest image tagdocker-compose.yml prevent traffic before the app is ready.env on the server — never deploy it with rsync/git (it contains secrets)