using external data dir
1 parent 000d8a8 commit f6a096b57a8610e84681e1563a723af729589b75
@Pascal Gollor Pascal Gollor authored on 2 Apr 2018
Showing 9 changed files
View
12
app/Dockerfile 100644 → 0
FROM nextcloud:fpm
 
RUN apt-get update; \
apt-get install -y --no-install-recommends \
smbclient libsmbclient-dev
RUN pecl install \
smbclient
RUN rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-enable smbclient
 
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php
View
9
app/redis.config.php 100644 → 0
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);
View
docker-compose.yml
View
docker/app/Dockerfile 0 → 100644
View
docker/app/redis.config.php 0 → 100644
View
docker/web/Dockerfile 0 → 100644
View
nextcloud.conf.example
View
web/Dockerfile 100644 → 0
View
web/nginx.conf 100644 → 0