mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
283 B
Bash
Executable file
12 lines
283 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ ! -f .env.local ]; then
|
|
cp .env.local.example .env.local
|
|
echo "Created .env.local from the template — fill it in, then re-run." >&2
|
|
exit 1
|
|
fi
|
|
|
|
docker compose build --no-cache
|
|
docker compose up --force-recreate
|