diff options
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 "$@"; } |
