← Back to list

docker-deployer
by Rehan-Ul-Haq
⭐ 9🍴 2📅 Jan 8, 2026
SKILL.md
name: docker-deployer description: Guide for deploying applications with Docker. This skill should be used when users want to containerize and deploy their applications.
Docker Deployer
Deploy applications using Docker containers.
When to Use
Use when a user asks to:
- Containerize an application
- Create a Dockerfile
- Deploy with Docker
How to Deploy
Step 1: Create Dockerfile
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
Step 2: Build Image
docker build -t myapp .
Step 3: Run Container
docker run -p 3000:3000 myapp
Step 4: Push to Registry
docker tag myapp registry/myapp:latest
docker push registry/myapp:latest
Step 5: Deploy to Cloud
For AWS ECS, create task definition and service.
Output
Dockerfile- Container definitiondocker-compose.yml- Multi-container setup (if needed)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon