File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3535 cat > .env <<'EOF'
3636 APP_TITLE=LibreChat CI
3737 ENDPOINTS=openAI,agents
38- DOMAIN_CLIENT=http://localhost:3080
39- DOMAIN_SERVER=http://localhost:3080
38+ DOMAIN_CLIENT=http://localhost:3081
39+ DOMAIN_SERVER=http://localhost:3081
4040 NO_INDEX=true
4141 TRUST_PROXY=1
4242
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ set -Eeuo pipefail
44ROOT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.." && pwd) "
55cd " ${ROOT_DIR} "
66
7+ INGRESS_URL=" ${INGRESS_URL:- http:// 127.0.0.1: 3081} "
8+
79compose_files=(
810 -f docker-compose.yml
911 -f compose.hardening.yml
@@ -60,7 +62,7 @@ compose \
6062 up -d
6163
6264log " Waiting for LibreChat ingress"
63- wait_http " http://127.0.0.1:3080 /login"
65+ wait_http " ${INGRESS_URL} /login"
6466
6567log " Waiting for code interpreter health endpoint"
6668wait_http " http://127.0.0.1:8001/health"
You can’t perform that action at this time.
0 commit comments