start.sh builds via 'make build' (platform auto-detected) then starts services detached with 'docker compose up -d'. Makefile gains build/build-<platform> targets that build images without starting, mirroring the existing up/<platform> targets.
7 lines
93 B
Bash
Executable file
7 lines
93 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
make build
|
|
docker compose up -d
|