Shell scripts for build, start, stop, restart, nuke, logs, status. Shared helpers in _common.sh (colours, compose detection, project root). Updated CHEATSHEET.md with new tool references. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Stop and remove the derp container.
|
|
# Usage: tools/stop
|
|
|
|
# shellcheck source=tools/_common.sh
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/_common.sh"
|
|
cd "$PROJECT_DIR" || exit 1
|
|
|
|
dim "Stopping container..."
|
|
$COMPOSE down
|
|
info "Container stopped"
|