We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8aa99c commit c4c1abdCopy full SHA for c4c1abd
espresso/scripts/startup.sh
@@ -56,7 +56,11 @@ echo "✅ Docker compose build complete"
56
57
# Step 6: Start services
58
echo "👉 Step 6: Starting services..."
59
-docker compose up -d
+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
64
echo "✅ Services started in detached mode"
65
66
echo "🎉 Startup complete! All services should now be running."
0 commit comments