← スキル一覧に戻る

compose-bringup
by jfriisj
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: compose-bringup description: Bring up a Docker Compose stack reliably and verify basic service/container status. Use for local smoke tests, live testing, and staging-like bring-up.
Skill Instructions
Inputs
COMPOSE_FILES(string): compose flags, e.g.-f docker-compose.ymlor-f docker-compose.yml -f docker-compose.gpu.ymlBUILD(string/bool): when set (non-empty), include--build
Procedure
set -euo pipefail
compose_files="${COMPOSE_FILES:-}"
build_flag=""
if [ -n "${BUILD:-}" ]; then
build_flag="--build"
fi
# Bring up
if [ -n "$compose_files" ]; then
docker compose $compose_files up -d $build_flag
else
docker compose up -d $build_flag
fi
# Inspect status
if [ -n "$compose_files" ]; then
docker compose $compose_files ps
else
docker compose ps
fi
Acceptance Criteria
docker compose ... psshows expected services arerunning/healthy(if healthchecks exist)
Notes
- Use
docker-compose.ymlalone for CPU-only runs. - Add an override file (e.g.
docker-compose.gpu.yml) only when you explicitly want GPU.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です