pre-commit, launcher, _colors, api:gen, bootstrap, build, cleanup, container_id, container_ids, debug:send, downkill, env, logs, migrate, pkg:update, ps, python, restart, setup:dev, shell, start, stop, and ui_dev
10 lines
259 B
Bash
Executable File
10 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. ./cmd/env
|
|
|
|
run_down_kill() {
|
|
. ./cmd/container_ids
|
|
$docker_path kill $ID_OB_UI $ID_OB_BACKEND $ID_OB_REDIS $ID_OB_DB $ID_OB_JANUS $ID_OB_SDB $ID_OB_INDEX $ID_OB_WORKER $ID_OB_CLEARLY $ID_OB_S3
|
|
ob_compose down
|
|
}
|
|
|
|
run_down_kill |