add --docker flag to E2E tests and demo scripts

This commit is contained in:
Adil Hafeez 2026-03-03 15:08:50 -08:00
parent 9d223d54f9
commit 53d11ae235
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
14 changed files with 35 additions and 35 deletions

View file

@ -26,7 +26,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with arch_config_with_aliases.yaml..."
planoai up arch_config_with_aliases.yaml
planoai up --docker arch_config_with_aliases.yaml
echo "\n\nPlano started successfully."
echo "Please run the following CURL command to test model alias routing. Additional instructions are in the README.md file. \n"
@ -48,7 +48,7 @@ start_demo() {
stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down
planoai down --docker
}
# Main script logic