This commit is contained in:
Braden Jageman 2024-04-16 23:04:32 -04:00
parent 04b84225c0
commit 1a37328f75
6 changed files with 1 additions and 35 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
.env
config/
nextcloud
nextcloud

View File

@ -260,7 +260,6 @@ services:
restart: unless-stopped
volumes:
nc-db:
wordpress-home:
db-home:
wordpress-botc:

View File

@ -1,15 +0,0 @@
FROM nextcloud:apache
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php
ARG NEXTCLOUD_DATA_DIR="/storage/"
RUN echo ${NEXTCLOUD_DATA_DIR}
RUN mkdir -p ${NEXTCLOUD_DATA_DIR}; \
chown -R www-data:root ${NEXTCLOUD_DATA_DIR}; \
chmod -R g=u ${NEXTCLOUD_DATA_DIR}
VOLUME ${NEXTCLOUD_DATA_DIR}
#ENTRYPOINT ["/entrypoint.sh"]
#CMD ["php-fpm"]

View File

@ -1,4 +0,0 @@
FROM nextcloud:apache
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php

View File

@ -1,10 +0,0 @@
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => 'true',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);

View File

@ -1,4 +0,0 @@
MYSQL_ROOT_PASSWORD=neurobomber
MYSQL_PASSWORD=ncpass
MYSQL_DATABASE=nextcloud
MYSQL_USER=nextcloud