From 1eade44367302b73b292c6f595141faebc8169f1 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Wed, 12 Oct 2016 09:59:44 +0200 Subject: [PATCH] nextcloud: add env variables --- nextcloud/10.0/Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nextcloud/10.0/Dockerfile b/nextcloud/10.0/Dockerfile index 8b41ab1..a46353a 100644 --- a/nextcloud/10.0/Dockerfile +++ b/nextcloud/10.0/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.4 +FROM alpine:edge MAINTAINER Wonderfall ARG NEXTCLOUD_VERSION=10.0.1 @@ -9,7 +9,11 @@ ENV UID=991 GID=991 \ UPLOAD_MAX_SIZE=10G \ APC_SHM_SIZE=128M \ OPCACHE_MEM_SIZE=128 \ - CRON_PERIOD=15m + CRON_PERIOD=15m \ + TZ=Europe/Berlin \ + DB_TYPE=sqlite3 \ + ADMIN_USER=admin \ + ADMIN_PASSWORD=admin RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \ && echo "@testing https://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \