Claude Code Plugins

Community-maintained marketplace

Feedback

docker-compose-dev

@matt-riley/mjrwtf
0
0

Run mjr.wtf locally using Docker Compose (SQLite), including migrations, logs, and teardown.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name docker-compose-dev
description Run mjr.wtf locally using Docker Compose (SQLite), including migrations, logs, and teardown.
license MIT
compatibility Requires docker, docker compose, bash, git, and make.
metadata [object Object]
allowed-tools Bash(git:*) Bash(make:*) Bash(docker:*) Bash(curl:*) Read

Quick start (SQLite via compose)

  1. Create env file:
cp .env.example .env
# set AUTH_TOKENS (preferred) or AUTH_TOKEN
  1. Create the persistent data directory:
mkdir -p data
  1. Start services (Docker Compose runs migrations automatically on startup via docker-entrypoint.sh):
make docker-compose-up
  1. Verify health:
curl http://localhost:8080/health
curl http://localhost:8080/ready

Useful ops

make docker-compose-logs
make docker-compose-ps
make docker-compose-down