Run mjr.wtf locally using Docker Compose (SQLite), including migrations, logs, and teardown.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
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:
repo: mjrwtf
runner: github-copilot-cli
version: 1.1
allowed-tools: Bash(git:*) Bash(make:*) Bash(docker:*) Bash(curl:*) Read
---
## Quick start (SQLite via compose)
1) Create env file:
```bash
cp .env.example .env
# set AUTH_TOKENS (preferred) or AUTH_TOKEN
```
2) Create the persistent data directory:
```bash
mkdir -p data
```
3) Start services (Docker Compose runs migrations automatically on startup via docker-entrypoint.sh):
```bash
make docker-compose-up
```
4) Verify health:
```bash
curl http://localhost:8080/health
curl http://localhost:8080/ready
```
## Useful ops
```bash
make docker-compose-logs
make docker-compose-ps
make docker-compose-down
```
No comments yet. Be the first to comment!