File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:bionic-20200219 as tmp
2
2
ARG PLUGIN_NAME=postgresql
3
3
ARG PLAN_TYPE=FREE
4
- ARG CORE_VERSION=10.0.3
5
- ARG PLUGIN_VERSION=8.0.3
4
+ ARG CORE_VERSION=10.1.0
5
+ ARG PLUGIN_VERSION=8.1.0
6
6
RUN apt-get update && apt-get install -y curl zip
7
7
RUN OS= && dpkgArch="$(dpkg --print-architecture)" && \
8
8
case "${dpkgArch##*-}" in \
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ Available environment variables
51
51
- OAUTH\_PROVIDER\_URL\_CONFIGURED\_IN\_OAUTH\_PROVIDER
52
52
- OAUTH\_CLIENT\_SECRET\_ENCRYPTION\_KEY
53
53
- BULK\_MIGRATION\_PARALLELISM
54
+ - BULK\_MIGRATION\_BATCH\_SIZE
55
+ - BULK\_MIGRATION\_CRON\_ENABLED
56
+ - WEBAUTHN\_RECOVER\_ACCOUNT\_TOKEN\_LIFETIME
54
57
- ** POSTGRESQL:**
55
58
- POSTGRESQL\_CONNECTION\_URI
56
59
- POSTGRESQL\_USER
Original file line number Diff line number Diff line change @@ -379,6 +379,16 @@ then
379
379
echo " bulk_migration_parallelism: $BULK_MIGRATION_PARALLELISM " >> $CONFIG_FILE
380
380
fi
381
381
382
+ if [ ! -z $BULK_MIGRATION_BATCH_SIZE ]
383
+ then
384
+ echo " bulk_migration_batch_size: $BULK_MIGRATION_BATCH_SIZE " >> $CONFIG_FILE
385
+ fi
386
+
387
+ if [ ! -z $WEBAUTHN_RECOVER_ACCOUNT_TOKEN_LIFETIME ]
388
+ then
389
+ echo " webauthn_recover_account_token_lifetime: $WEBAUTHN_RECOVER_ACCOUNT_TOKEN_LIFETIME " >> $CONFIG_FILE
390
+ fi
391
+
382
392
fi
383
393
384
394
# check if no options has been passed to docker run
You can’t perform that action at this time.
0 commit comments