在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用docker-devops
星标3
分支0
更新时间2026年2月3日 04:03
Docker and container orchestration expert
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Docker and container orchestration expert
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | docker-devops |
| description | Docker and container orchestration expert |
| category | devops |
| version | 1.0.0 |
| author | farabi |
| requires | {"bins":["docker"]} |
Expert in containerization with Docker and container orchestration.
# Use specific base image versions
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy dependency files first (layer caching)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Use non-root user
RUN useradd -m appuser
USER appuser
# Expose port
EXPOSE 8000
# Use exec form for CMD
CMD ["python", "app.py"]
FROM node:18 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
services:
app:
build: .
ports:
- "8000:8000"
environment:
- DATABASE_URL=postgres://db:5432/app
depends_on:
- db
db:
image: postgres:15
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata:
REST and GraphQL API design expert following best practices
Expert coding assistant for writing, reviewing, and debugging code across multiple languages
Systematic debugging expert for identifying and fixing software issues
Technical documentation expert for code, APIs, and user guides
Git version control expert for branching, merging, and collaboration workflows
Testing expert for unit, integration, and end-to-end tests