From b626873351991f3fe4e79f3c4f86e4e87e23c2f7 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 24 Nov 2018 21:57:13 +0100 Subject: [PATCH 1/2] 2.3.4 --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 93aa017..3249b6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:latest LABEL maintainer "Marvin Steadfast " -ARG WALLABAG_VERSION=2.3.3 +ARG WALLABAG_VERSION=2.3.4 RUN set -ex \ && apk update \ diff --git a/README.md b/README.md index e9f5d8d..6014c0c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Default login is `wallabag:wallabag`. - `-e SYMFONY__ENV__DATABASE_PASSWORD=...` (defaults to "~", this is the password of the database user to use) - `-e SYMFONY__ENV__DATABASE_CHARSET=...` (defaults to utf8, this is the database charset to use) - `-e SYMFONY__ENV__SECRET=...` (defaults to "ovmpmAWXRCabNlMgzlzFXDYmCFfzGv") -- `-e SYMFONY__ENV__MAILER_HOST=...` defaults to "127.0.0.1", the SMTP host) +- `-e SYMFONY__ENV__MAILER_HOST=...` (defaults to "127.0.0.1", the SMTP host) - `-e SYMFONY__ENV__MAILER_USER=...` (defaults to "~", the SMTP user) - `-e SYMFONY__ENV__MAILER_PASSWORD=...`(defaults to "~", the SMTP password) - `-e SYMFONY__ENV__FROM_EMAIL=...`(defaults to "wallabag@example.com", the address wallabag uses for outgoing emails) From 0cee0470de74ff096b8717bef9fbb50c772f963c Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 24 Nov 2018 22:38:53 +0100 Subject: [PATCH 2/2] Add missing PHP extension --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3249b6e..b07b2a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,8 @@ RUN set -ex \ php7-tokenizer \ php7-xml \ php7-zlib \ + php7-sockets \ + php7-xmlreader \ py-mysqldb \ py-psycopg2 \ py-simplejson \