Docker: agregar setup local con NGINX + PHP-FPM y script de control

Incluye Dockerfile, docker-compose.yml (puerto 8088), nginx.conf y
script _app con --status, --start y --stop para levantar la app localmente.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ricardo Monla
2026-06-03 15:58:27 -03:00
co-authored by Claude Sonnet 4.6
parent cdbbf0e6db
commit 5a54fdcfde
4 changed files with 98 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM php:8.2-fpm-alpine
RUN apk add --no-cache sqlite sqlite-dev \
&& docker-php-ext-install pdo pdo_sqlite
WORKDIR /var/www/html