Compare commits

...

5 commits

Author SHA1 Message Date
678987b249 Merge pull request 'develop' (#4) from develop into master
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #4
2024-08-06 14:26:09 +00:00
4fbf104d74 cicd: fix build naming
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build was killed
2024-08-06 16:12:01 +02:00
e7108f75ff fix: avoid timeout during install (php + httpd)
Some checks reported errors
continuous-integration/drone/push Build was killed
2024-08-06 16:01:21 +02:00
85de3324a5 Merge branch 'develop' of code.apps.glenux.net:glenux-opencontainers/service-dolibarr into develop
Some checks reported errors
continuous-integration/drone/push Build was killed
2024-08-06 15:52:39 +02:00
6f7c494d14 Bump dolibarr version to 19.0.2 2024-08-06 15:49:54 +02:00
3 changed files with 12 additions and 9 deletions

View file

@ -40,9 +40,11 @@ steps:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-dolibarr:latest_${DRONE_BRANCH/\\//-}"
cache_from: "glenux/service-dolibarr:${DRONE_BRANCH/\\//-}_latest"
repo: glenux/service-dolibarr
tags: "latest_${DRONE_BRANCH/\\//-}"
tags:
- "${DRONE_BRANCH/\\//-}_latest"
- "${DRONE_BRANCH/\\//-}_${DRONE_COMMIT_SHA:0:8}"
purge: false
when:
branch:
@ -57,7 +59,7 @@ steps:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-dolibarr:latest_${DRONE_BRANCH/\\//-}"
cache_from: "glenux/service-dolibarr:${DRONE_BRANCH/\\//-}_latest"
repo: glenux/service-dolibarr
tags: latest
purge: false

View file

@ -1,4 +1,4 @@
FROM php:8.1-apache-buster
FROM php:8.1-apache-bookworm
# FROM php:7.4-apache-buster
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
@ -57,10 +57,11 @@ WORKDIR /var/www/html
# && mv composer.json.disabled composer.json \
# && composer install
RUN sed \
-i 's|/var/www/html|/var/www/html/htdocs|' \
/etc/apache2/sites-enabled/000-default.conf
# Fix configuration
RUN sed -i 's|/var/www/html|/var/www/html/htdocs|' \
/etc/apache2/sites-enabled/000-default.conf \
&& sed -i 's|^Timeout .*|Timeout 1200|' \
/etc/apache2/apache2.conf
CMD ["apache2-foreground"]

View file

@ -1,5 +1,5 @@
file_uploads = On
upload_max_filesize = 128M
post_max_size = 128M
max_execution_time = 600
max_execution_time = 1200
max_input_time = 120