Merge branch 'develop'

This commit is contained in:
2023-02-15 18:30:09 -03:00
5 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,7 @@
FROM php:8.1-fpm
RUN apt-get update && apt-get install -y libzip-dev libicu-dev git libpng-dev unzip
RUN apt-get update && apt-get install -y libzip-dev libicu-dev git libpng-dev unzip \
&& rm -r /var/lib/apt/lists/*
RUN docker-php-ext-install pdo pdo_mysql zip intl gd bcmath

View File

@ -11,8 +11,9 @@ WORKDIR "${LOGVIEW_INSTALLATION_PATH}"
RUN apt-get update \
&& apt-get install -yq --no-install-recommends git zip unzip libzip-dev \
&& rm -r /var/lib/apt/lists/* \
&& git clone --branch develop http://git.provm.cl/ProVM/logview.git "${LOGVIEW_INSTALLATION_PATH}" \
&& git clone http://git.provm.cl/ProVM/logview.git "${LOGVIEW_INSTALLATION_PATH}" \
&& docker-php-ext-install zip \
&& cp "${LOGVIEW_INSTALLATION_PATH}/php-errors.ini" /usr/local/etc/php/conf.d/docker-php-errors.ini \
&& composer -d "${LOGVIEW_INSTALLATION_PATH}/app" install \
&& mkdir "${LOGVIEW_INSTALLATION_PATH}/app/cache" \
&& chmod -R 777 "${LOGVIEW_INSTALLATION_PATH}/app/cache" \

View File

@ -3,7 +3,7 @@
"description" : "Response handler module for my apps",
"type" : "library",
"require" : {
"wixel/gump" : "^2.0",
"wixel/gump" : "^2.0.0",
"aldarien/contract" : "*"
},
"require-dev" : {

View File

@ -66,6 +66,7 @@ services:
context: .
dockerfile: Log.Dockerfile
container_name: incoviba_logview
restart: unless-stopped
environment:
WEB_PORT: '8084'
volumes:

3
php-errors.ini Normal file
View File

@ -0,0 +1,3 @@
display_errors=no
log_errors=yes
error_log=/logs/php_errors.log