Split versions
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
FROM nextcloud:16-fpm-alpine
|
||||
|
||||
RUN set -ex; \
|
||||
apk add --no-cache --virtual .build-deps \
|
||||
autoconf \
|
||||
automake \
|
||||
file \
|
||||
g++ \
|
||||
gcc \
|
||||
make \
|
||||
php7-dev \
|
||||
re2c \
|
||||
samba-dev \
|
||||
zlib-dev; \
|
||||
apk add --no-cache libsmbclient; \
|
||||
pecl install smbclient; \
|
||||
docker-php-ext-enable smbclient; \
|
||||
apk add --no-cache imagemagick; \
|
||||
apk add --no-cache sudo; \
|
||||
apk del .build-deps
|
||||
|
||||
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
docker pull nextcloud:16-fpm-alpine
|
||||
docker build $1\
|
||||
-t bkraul/nextcloud:16-fpm-alpine \
|
||||
.
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
docker push bkraul/nextcloud:16-fpm-alpine
|
||||
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
docker push docker-registry.belmankraul.com/bkraul/nextcloud:latest
|
||||
docker push docker-registry.belmankraul.com/bkraul/nextcloud:fpm-alpine
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
),
|
||||
);
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
docker tag bkraul/nextcloud:latest docker-registry.belmankraul.com/bkraul/nextcloud:latest
|
||||
docker tag bkraul/nextcloud:fpm-alpine docker-registry.belmankraul.com/bkraul/nextcloud:fpm-alpine
|
||||
Reference in New Issue
Block a user