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 53f6bfa commit d79cf67Copy full SHA for d79cf67
magento/entrypoint.sh
@@ -21,15 +21,7 @@ if [ -f custom-entrypoint.sh ]; then
21
bash ./custom-entrypoint.sh
22
fi
23
24
-# Wait until Elasticsearch is up and running
25
-counter=0
26
-until curl -s -o /dev/null http://localhost:9200; do
27
- counter=$((counter + 1))
28
- echo "Elasticsearch not (yet) available, waiting... (attempt $counter)"
29
- sleep 1
30
-done
31
-
32
-if [ -n "$FLAT_TABLES" ]; then
+if [ "$FLAT_TABLES" = "true" ]; then
33
echo "Enabling Flat Tables"
34
magerun2 config:store:set catalog/frontend/flat_catalog_category 1
35
magerun2 config:store:set catalog/frontend/flat_catalog_product 1
0 commit comments