mirror of
https://github.com/langgenius/dify.git
synced 2026-02-01 16:41:58 +08:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
ROOT="$(dirname "$SCRIPT_DIR")"
|
|
|
|
cd "$ROOT/docker"
|
|
docker compose -f docker-compose.middleware.yaml --profile postgresql --profile weaviate -p dify up -d
|