Enhance database management scripts and update configurations
- Added importdb and importinv scripts for database import functionality. - Improved dumpdb script for better error handling and output management. - Updated .gitignore to include CSV files. - Changed phpfpm service to use bash instead of ash. - Modified docker-compose.yml to expose Redis and adjust Nginx port. - Updated OpenSSL configuration for improved security settings.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
FROM php:8.3-fpm-bullseye
|
||||
FROM php:8.3-fpm-bookworm
|
||||
|
||||
# Add the installer for PHP extensions
|
||||
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
||||
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
|
||||
vim
|
||||
|
||||
# Install PHP extensions
|
||||
RUN install-php-extensions mysqli pdo_mysql sqlsrv pdo_sqlsrv
|
||||
RUN install-php-extensions mysqli pdo_mysql sqlsrv pdo_sqlsrv redis
|
||||
|
||||
# Clean up unnecessary files
|
||||
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
Reference in New Issue
Block a user