aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsetup.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index efd3954..16240cd 100755
--- a/setup.sh
+++ b/setup.sh
@@ -13,7 +13,11 @@ services() { cd "$ROOT_DIR"; docker compose --profile services "$@"; }
core() { cd "$ROOT_DIR"; docker compose --profile core "$@"; }
# TODO: use --wait and add health checks
-start() { stop || true; services up -d "$@"; }
+start() {
+ stop || true; services up -d "$@"
+ core down nginx
+ core up nginx -d
+}
startfg() { stop || true; services up "$@"; }