Skip to content
This repository was archived by the owner on Sep 16, 2025. It is now read-only.

Commit 024d95e

Browse files
authored
Release 0.7.1 (#69)
1 parent 0bfaa9b commit 024d95e

File tree

7 files changed

+23
-22
lines changed

7 files changed

+23
-22
lines changed

emoncms/Dockerfile

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:13.0.0
1+
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:11.1.0
22
# hadolint ignore=DL3006
33
FROM ${BUILD_FROM}
44

@@ -8,21 +8,22 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
88
# Setup base
99
RUN \
1010
apk add --no-cache \
11-
nginx=1.22.1-r0 \
12-
mariadb-client=10.6.11-r0 \
13-
php81-ctype=8.1.13-r0 \
14-
php81-curl=8.1.13-r0 \
15-
php81-fpm=8.1.13-r0 \
16-
php81-gettext=8.1.13-r0 \
17-
php81-mbstring=8.1.13-r0 \
18-
php81-mysqli=8.1.13-r0 \
19-
php81-opcache=8.1.13-r0 \
20-
php81-session=8.1.13-r0 \
21-
php81-zip=8.1.13-r0 \
22-
php81=8.1.13-r0 \
11+
nginx=1.20.2-r1 \
12+
mariadb-client=10.6.10-r0 \
13+
php8-ctype=8.0.25-r0 \
14+
php8-curl=8.0.25-r0 \
15+
php8-fpm=8.0.25-r0 \
16+
php8-gettext=8.0.25-r0 \
17+
php8-mbstring=8.0.25-r0 \
18+
php8-mysqli=8.0.25-r0 \
19+
php8-opcache=8.0.25-r00 \
20+
php8-session=8.0.25-r0 \
21+
php8-zip=8.0.25-r0 \
22+
php8=8.0.25-r0 \
2323
\
24+
&& ln -s /usr/bin/php8 /usr/bin/php \
2425
&& apk add --no-cache --virtual .build-dependencies \
25-
git=2.38.2-r0 \
26+
git=2.34.5-r0 \
2627
\
2728
&& git clone --branch 11.2.3 --depth=1 \
2829
https://github.com/emoncms/emoncms.git /var/www/emoncms ; cd /var/www/emoncms \

emoncms/build.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"build_from": {
3-
"aarch64": "ghcr.io/hassio-addons/base/aarch64:13.0.0",
4-
"amd64": "ghcr.io/hassio-addons/base/amd64:13.0.0",
5-
"armhf": "ghcr.io/hassio-addons/base/armhf:13.0.0",
6-
"armv7": "ghcr.io/hassio-addons/base/armv7:13.0.0",
7-
"i386": "ghcr.io/hassio-addons/base/i386:13.0.0"
3+
"aarch64": "ghcr.io/hassio-addons/base/aarch64:11.1.0",
4+
"amd64": "ghcr.io/hassio-addons/base/amd64:11.1.0",
5+
"armhf": "ghcr.io/hassio-addons/base/armhf:11.1.0",
6+
"armv7": "ghcr.io/hassio-addons/base/armv7:11.1.0",
7+
"i386": "ghcr.io/hassio-addons/base/i386:11.1.0"
88
}
99
}

emoncms/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Emoncms",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"slug": "emoncms",
55
"description": "Emoncms is a powerful open-source web-app for processing, logging and visualising energy, temperature and other environmental data.",
66
"url": "https://github.com/inverse/hassio-addon-emoncms",
File renamed without changes.

emoncms/rootfs/etc/php7/conf.d/99-emoncms.ini renamed to emoncms/rootfs/etc/php8/conf.d/99-emoncms.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ opcache.max_accelerated_files=4096
66
opcache.memory_consumption=32
77
opcache.revalidate_freq=0
88
opcache.validate_timestamps=0
9-
opcache.blacklist_filename=/etc/php7/blacklist.txt
9+
opcache.blacklist_filename=/etc/php8/blacklist.txt
File renamed without changes.

emoncms/rootfs/etc/services.d/php-fpm/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ else
2424
fi
2525

2626
bashio::log.info "Starting PHP-FPM server..."
27-
exec php-fpm7 --nodaemonize
27+
exec php-fpm8 -R --nodaemonize

0 commit comments

Comments
 (0)