Add insecure docker-compose examples for apache
This commit is contained in:
parent
6a54981de4
commit
83b027fbae
@ -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' => 'mysql',
|
||||||
|
'dbname' => getenv('MYSQL_DATABASE'),
|
||||||
|
'dbuser' => getenv('MYSQL_USER'),
|
||||||
|
'dbpass' => getenv('MYSQL_PASSWORD'),
|
||||||
|
'dbhost' => 'db',
|
||||||
|
'dbtableprefix' => '',
|
||||||
|
);
|
@ -0,0 +1,3 @@
|
|||||||
|
MYSQL_PASSWORD=
|
||||||
|
MYSQL_DATABASE=nextcloud
|
||||||
|
MYSQL_USER=nextcloud
|
@ -0,0 +1,50 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mariadb
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=
|
||||||
|
env_file:
|
||||||
|
- db.env
|
||||||
|
|
||||||
|
app:
|
||||||
|
build: ./app
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
volumes:
|
||||||
|
- nextcloud:/var/www/html
|
||||||
|
env_file:
|
||||||
|
- db.env
|
||||||
|
links:
|
||||||
|
- db
|
||||||
|
|
||||||
|
cron:
|
||||||
|
build: ./app
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- nextcloud:/var/www/html
|
||||||
|
links:
|
||||||
|
- db
|
||||||
|
user: www-data
|
||||||
|
entrypoint: |
|
||||||
|
bash -c 'bash -s <<EOF
|
||||||
|
trap "break;exit" SIGHUP SIGINT SIGTERM
|
||||||
|
|
||||||
|
while [ ! -f /var/www/html/config/config.php ]; do
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
php -f /var/www/html/cron.php
|
||||||
|
sleep 15m
|
||||||
|
done
|
||||||
|
EOF'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
nextcloud:
|
@ -0,0 +1,5 @@
|
|||||||
|
FROM nextcloud:apache
|
||||||
|
|
||||||
|
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php
|
||||||
|
|
||||||
|
COPY redis.config.php /usr/src/nextcloud/config/redis.config.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' => '',
|
||||||
|
);
|
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
$CONFIG = array (
|
||||||
|
'memcache.locking' => '\OC\Memcache\Redis',
|
||||||
|
'redis' => array(
|
||||||
|
'host' => 'redis',
|
||||||
|
'port' => 6379,
|
||||||
|
),
|
||||||
|
);
|
@ -0,0 +1,3 @@
|
|||||||
|
MYSQL_PASSWORD=
|
||||||
|
MYSQL_DATABASE=nextcloud
|
||||||
|
MYSQL_USER=nextcloud
|
@ -0,0 +1,33 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mariadb
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=
|
||||||
|
env_file:
|
||||||
|
- db.env
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
app:
|
||||||
|
build: ./app
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
volumes:
|
||||||
|
- nextcloud:/var/www/html
|
||||||
|
env_file:
|
||||||
|
- db.env
|
||||||
|
links:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
nextcloud:
|
@ -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' => 'mysql',
|
||||||
|
'dbname' => getenv('MYSQL_DATABASE'),
|
||||||
|
'dbuser' => getenv('MYSQL_USER'),
|
||||||
|
'dbpass' => getenv('MYSQL_PASSWORD'),
|
||||||
|
'dbhost' => 'db',
|
||||||
|
'dbtableprefix' => '',
|
||||||
|
);
|
3
.examples/docker-compose/insecure/mariadb/apache/db.env
Normal file
3
.examples/docker-compose/insecure/mariadb/apache/db.env
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
MYSQL_PASSWORD=
|
||||||
|
MYSQL_DATABASE=nextcloud
|
||||||
|
MYSQL_USER=nextcloud
|
@ -0,0 +1,28 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mariadb
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=
|
||||||
|
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:
|
@ -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…
Reference in New Issue
Block a user