Skip to content

Commit

Permalink
5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCARPi committed Jan 13, 2025
1 parent 3ae3b64 commit 92046f7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Container image version
# Note: the version here is from `ELABIMG_VERSION` present in Dockerfile, not the tagged one

# 5.4.0

* Add `USE_PERSISTENT_MYSQL_CONN` env var (defaults to `true`). This controls the value for `PDO::ATTR_PERSISTENT` mode in PHP's PDO library.

# 5.3.1

* bug/medium: php.ini: extend `open_basedir` to /run/s6-rc. fix elabftw/elabftw#5249
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ RUN abuild && find /home/builder/packages -type f -name 'cronie-1*.apk' -exec mv
FROM alpine:3.19

# this is versioning for the container image
ENV ELABIMG_VERSION=5.3.1
ENV ELABIMG_VERSION=5.4.0

# the target elabftw version is passed with --build-arg
# it is a mandatory ARG
Expand Down
6 changes: 6 additions & 0 deletions src/docker-compose.yml-EXAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,12 @@ services:
# this does nothing if SET_REAL_IP is set to false
#- SET_REAL_IP_FROM=192.168.31.48, 192.168.0.42, 10.10.13.37

# optional: modify connection persistence for MySQL
# pdo doc: https://www.php.net/manual/en/pdo.connections.php
# default: true
# example value: false
#- USE_PERSISTENT_MYSQL_CONN=true

# optional: adjust the number of worker processes nginx will spawn
# default value: auto
# if auto doesn't work for you, use the number of cores available on the server (or less)
Expand Down

0 comments on commit 92046f7

Please sign in to comment.