1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 09:46:27 +00:00

8 Commits
2.3.6 ... 2.3.8

Author SHA1 Message Date
Jérémy Benoist
710cc43af4 Merge pull request #155 from wallabag/release-2.3.8
2.3.8
2019-05-14 13:24:19 +02:00
Jeremy Benoist
b2afa8eff4 2.3.8 2019-05-14 12:15:56 +02:00
Jérémy Benoist
a01e124295 Merge pull request #150 from wallabag/release-2.3.7
2.3.7
2019-03-04 15:21:33 +01:00
Jeremy Benoist
4abeb0db73 2.3.7 2019-03-04 13:44:40 +01:00
Jérémy Benoist
ca1dd1d464 Merge pull request #147 from jeroenj/tzdata
Adds tzdata to installed packages
2019-02-27 16:17:27 +01:00
Jérémy Benoist
c58b7b4af2 Merge pull request #148 from Chostakovitch/master
Add locale environment variable to README
2019-02-27 16:17:10 +01:00
Quentin Duchemin
4dcaf994ab Add locale environment variable to README 2019-02-27 11:15:10 +01:00
Jeroen Jacobs
8737b7115e Adds tzdata to installed packages
This allows for setting the timezone using the TZ environment variable.
2019-02-26 21:46:49 +01:00
2 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ FROM alpine:latest
LABEL maintainer "Marvin Steadfast <marvin@xsteadfastx.org>"
ARG WALLABAG_VERSION=2.3.6
ARG WALLABAG_VERSION=2.3.8
RUN set -ex \
&& apk update \
@@ -46,6 +46,7 @@ RUN set -ex \
rabbitmq-c \
s6 \
tar \
tzdata \
&& rm -rf /var/cache/apk/* \
&& ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log \
@@ -57,7 +58,7 @@ COPY root /
RUN set -ex \
&& cd /var/www/wallabag \
&& SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist \
&& SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist --no-progress \
&& chown -R nobody:nobody /var/www/wallabag
EXPOSE 80

View File

@@ -26,6 +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__LOCALE=...` (default to en)
- `-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)