Skip to content

Commit c4c1abd

Browse files
authored
forget this commit (#233)
1 parent a8aa99c commit c4c1abd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

espresso/scripts/startup.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ echo "✅ Docker compose build complete"
5656

5757
# Step 6: Start services
5858
echo "👉 Step 6: Starting services..."
59-
docker compose up -d
59+
if [ "$USE_TEE" = "True" ] || [ "$USE_TEE" = "true" ]; then
60+
COMPOSE_PROFILES=tee docker compose up -d
61+
else
62+
docker compose up -d
63+
fi
6064
echo "✅ Services started in detached mode"
6165

6266
echo "🎉 Startup complete! All services should now be running."

0 commit comments

Comments
 (0)