Fix spacing issue in docker-compose.yml command block

Removed an unnecessary space in the schedule runner command. This change ensures consistency in formatting and avoids potential errors during script execution. No functional behavior is affected.
This commit is contained in:
vcorre
2024-12-19 14:23:47 +01:00
parent cbf63acc6b
commit 93d64efe19
+1 -1
View File
@@ -66,7 +66,7 @@ services:
webapp:
condition: service_healthy
command: >
sh -c "while [ true ]; do php artisan schedule:run; sleep 60; done"
sh -c "while [ true ]; do php artisan schedule:run; sleep 60;done"
mariadb:
image: 'mariadb:11'
ports: