0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-05-05 00:00:54 +02:00

Add more examples with proxy

This commit is contained in:
Tilo Spannagel 2017-08-25 17:18:25 +02:00
parent 01dd1a93f1
commit 4fbd273cb0
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
47 changed files with 1040 additions and 263 deletions

View file

@ -0,0 +1,3 @@
FROM nextcloud:fpm
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php

View file

@ -0,0 +1,10 @@
<?php
$AUTOCONFIG = array(
'directory' => '/var/www/html/data',
'dbtype' => 'mysql',
'dbname' => getenv('MYSQL_DATABASE'),
'dbuser' => getenv('MYSQL_USER'),
'dbpass' => getenv('MYSQL_PASSWORD'),
'dbhost' => 'db',
'dbtableprefix' => '',
);