mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-25 21:00:53 +02:00
Add insecure docker-compose examples for fpm
This commit is contained in:
parent
0ba11e9ca3
commit
f1515a32dc
16 changed files with 643 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
FROM nextcloud:fpm
|
||||
|
||||
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php
|
|
@ -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' => '',
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue