feature: add docker

This commit is contained in:
antv
2026-06-30 14:03:05 +07:00
parent c5016489ac
commit 96eac88f36
19 changed files with 211 additions and 36 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
set -e
cd /var/www/html
if [ ! -f "vendor/autoload.php" ]; then
composer install
fi
mkdir -p storage/logs \
storage/framework/cache \
storage/framework/sessions \
storage/framework/views \
bootstrap/cache
chmod -R 777 storage bootstrap/cache
exec "$@"