12 lines
192 B
Bash
Executable File
12 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. ./cmd/env
|
|
|
|
run_cleanup() {
|
|
heading "Stopping containers and removing volumes"
|
|
ob_compose down --volumes
|
|
success "Finished cleanup."
|
|
exit 0
|
|
}
|
|
|
|
run_cleanup
|