-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #225 from wallabag/release-2.4.0
2.4.0
- Loading branch information
Showing
7 changed files
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM alpine:3.12 | |
|
||
LABEL maintainer "Marvin Steadfast <[email protected]>" | ||
|
||
ARG WALLABAG_VERSION=2.3.8 | ||
ARG WALLABAG_VERSION=2.4.0 | ||
|
||
RUN apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ --allow-untrusted | ||
ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so php | ||
|
@@ -56,6 +56,7 @@ RUN set -ex \ | |
&& ln -sf /dev/stderr /var/log/nginx/error.log \ | ||
&& curl -s https://getcomposer.org/installer | php \ | ||
&& mv composer.phar /usr/local/bin/composer \ | ||
&& composer selfupdate --1 \ | ||
&& git clone --branch $WALLABAG_VERSION --depth 1 https://github.com/wallabag/wallabag.git /var/www/wallabag | ||
|
||
COPY root / | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,18 +9,9 @@ parameters: | |
database_table_prefix: wallabag_ | ||
database_socket: null | ||
database_charset: utf8 | ||
database_driver_class: null | ||
|
||
domain_name: https://your-wallabag-url-instance.com | ||
|
||
test_database_driver: pdo_sqlite | ||
test_database_host: 127.0.0.1 | ||
test_database_port: ~ | ||
test_database_name: ~ | ||
test_database_user: ~ | ||
test_database_password: ~ | ||
test_database_path: "%kernel.root_dir%/../data/db/wallabag_test.sqlite" | ||
|
||
mailer_transport: smtp | ||
mailer_user: ~ | ||
mailer_password: ~ | ||
|
@@ -42,6 +33,11 @@ parameters: | |
fosuser_registration: true | ||
fosuser_confirmation: true | ||
|
||
# how long the access token should live in seconds for the API | ||
fos_oauth_server_access_token_lifetime: 3600 | ||
# how long the refresh token should life in seconds for the API | ||
fos_oauth_server_refresh_token_lifetime: 1209600 | ||
|
||
from_email: [email protected] | ||
|
||
rss_limit: 50 | ||
|
@@ -60,5 +56,5 @@ parameters: | |
redis_path: null | ||
redis_password: null | ||
|
||
# Sentry | ||
# sentry logging | ||
sentry_dsn: ~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters