Default compose mail-sync to onlyoffice,gmail every 300s with import on new mail; gate full --rebuild behind MAIL_SYNC_INDEX. Fix mail-build stage order and add bin/stack/start-mail-sync.
14 lines
398 B
Bash
Executable File
14 lines
398 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# bin/stack/stop - stop compose brain / brain-mcp / reasoner / picoclaw / mail-sync.
|
|
#
|
|
# bin/stack/stop
|
|
#
|
|
# Volumes kept (kb, reasoner weights, picoclaw-home). Does not kill a host
|
|
# bin/brain/serve.go that is not a compose service.
|
|
set -euo pipefail
|
|
|
|
STACK_DIR="$(CDPATH= cd -- "$(dirname "$0")" && pwd)"
|
|
# shellcheck source=lib.sh
|
|
source "$STACK_DIR/lib.sh"
|
|
stack_stop "$@"
|