Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion espresso/scripts/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ echo "✅ Docker compose build complete"

# Step 6: Start services
echo "👉 Step 6: Starting services..."
docker compose up -d
if [ "$USE_TEE" = "True" ] || [ "$USE_TEE" = "true" ]; then
COMPOSE_PROFILES=tee docker compose up -d
else
docker compose up -d
fi
echo "✅ Services started in detached mode"

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