mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-24 20:34:10 +02:00
Add insecure docker-compose examples for apache
This commit is contained in:
parent
6a54981de4
commit
83b027fbae
17 changed files with 211 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
FROM nextcloud:apache
|
||||
|
||||
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
$AUTOCONFIG = array(
|
||||
'directory' => '/var/www/html/data',
|
||||
'dbtype' => 'pgsql',
|
||||
'dbname' => getenv('POSTGRES_DB'),
|
||||
'dbuser' => getenv('POSTGRES_USER'),
|
||||
'dbpass' => getenv('POSTGRES_PASSWORD'),
|
||||
'dbhost' => 'db',
|
||||
'dbtableprefix' => '',
|
||||
);
|
3
.examples/docker-compose/insecure/postgres/apache/db.env
Normal file
3
.examples/docker-compose/insecure/postgres/apache/db.env
Normal file
|
@ -0,0 +1,3 @@
|
|||
POSTGRES_PASSWORD=
|
||||
POSTGRES_DB=nextcloud
|
||||
POSTGRES_USER=nextcloud
|
|
@ -0,0 +1,26 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres
|
||||
restart: always
|
||||
volumes:
|
||||
- db:/var/lib/postgresql/data
|
||||
env_file:
|
||||
- db.env
|
||||
|
||||
app:
|
||||
build: ./app
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- nextcloud:/var/www/html
|
||||
env_file:
|
||||
- db.env
|
||||
links:
|
||||
- db
|
||||
|
||||
volumes:
|
||||
db:
|
||||
nextcloud:
|
Loading…
Add table
Add a link
Reference in a new issue