restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

24
cloud-docker-compose.yaml Executable file
View File

@@ -0,0 +1,24 @@
version: '3.8'
services:
php_laravel:
build:
context: .
dockerfile: Dockerfile
image: laravel
container_name: php_api
environment:
- PHP_DISPLAY_ERRORS=1
- PHP_DISPLAY_STARTUP_ERRORS=1
- PHP_ERROR_REPORTING=E_ALL
restart: always
ports:
- "3000:80"
networks:
- php_net
volumes:
- /dockers/uploads:/app/public/uploads
networks:
php_net: