Compare commits

...

4 commits

Author SHA1 Message Date
f2d6908ed0 Merge pull request 'develop' (#5) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #5
2025-01-12 10:49:50 +00:00
5788ec028d Update php-errors.ini
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
2025-01-12 10:31:37 +00:00
5132c3a308 Update Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 10:23:32 +00:00
769f1da8a5 hotfix(1/n): enable error logging
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-06 18:52:21 +02:00
2 changed files with 8 additions and 1 deletions

View file

@ -35,7 +35,8 @@ COPY php-errors.ini /usr/local/etc/php/conf.d/glenux-errors.ini
RUN curl -sS https://getcomposer.org/installer \ RUN curl -sS https://getcomposer.org/installer \
| php -- --install-dir=/usr/local/bin --filename=composer | php -- --install-dir=/usr/local/bin --filename=composer
ENV DOLIBARR_VERSION=19.0.2 ENV DOLIBARR_VERSION=20.0.3
# ENV DOLIBARR_VERSION=19.0.2
# ENV DOLIBARR_VERSION=18.0.4 # ENV DOLIBARR_VERSION=18.0.4
# ENV DOLIBARR_VERSION=17.0.2 # ENV DOLIBARR_VERSION=17.0.2
# ENV DOLIBARR_VERSION=16.0.4 # ENV DOLIBARR_VERSION=16.0.4

View file

@ -1,4 +1,10 @@
error_reporting = E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED error_reporting = E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
## For production
# display_errors = Off
# error_log = /dev/stderr
## For debugging
display_errors = Off display_errors = Off
log_errors = On log_errors = On