15 lines
231 B
Bash
Executable file
15 lines
231 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd $SCRIPT_DIR/ui/ && bun i
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
cleanup() {
|
|
docker compose down
|
|
}
|
|
trap cleanup INT TERM
|
|
|
|
docker compose up --build
|