mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-25 04:40:55 +02:00
Add more examples with proxy
This commit is contained in:
parent
01dd1a93f1
commit
4fbd273cb0
47 changed files with 1040 additions and 263 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' => '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,72 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: mariadb
|
||||
# image: mysql
|
||||
restart: always
|
||||
volumes:
|
||||
- db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=
|
||||
env_file:
|
||||
- db.env
|
||||
|
||||
app:
|
||||
build: ./app
|
||||
restart: always
|
||||
volumes:
|
||||
- nextcloud:/var/www/html
|
||||
environment:
|
||||
- VIRTUAL_HOST=
|
||||
- LETSENCRYPT_HOST=
|
||||
- LETSENCRYPT_EMAIL=
|
||||
env_file:
|
||||
- db.env
|
||||
depends_on:
|
||||
- db
|
||||
networks:
|
||||
- proxy-tier
|
||||
- default
|
||||
|
||||
proxy:
|
||||
build: ./proxy
|
||||
restart: always
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
labels:
|
||||
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
|
||||
volumes:
|
||||
- certs:/etc/nginx/certs:ro
|
||||
- conf.d:/etc/nginx/conf.d
|
||||
- vhost.d:/etc/nginx/vhost.d
|
||||
- html:/usr/share/nginx/html
|
||||
- /var/run/docker.sock:/tmp/docker.sock:ro
|
||||
networks:
|
||||
- proxy-tier
|
||||
|
||||
letsencrypt-companion:
|
||||
image: jrcs/letsencrypt-nginx-proxy-companion
|
||||
restart: always
|
||||
volumes:
|
||||
- certs:/etc/nginx/certs
|
||||
- conf.d:/etc/nginx/conf.d
|
||||
- vhost.d:/etc/nginx/vhost.d
|
||||
- html:/usr/share/nginx/html
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
networks:
|
||||
- proxy-tier
|
||||
depends_on:
|
||||
- proxy
|
||||
|
||||
volumes:
|
||||
db:
|
||||
nextcloud:
|
||||
certs:
|
||||
conf.d:
|
||||
vhost.d:
|
||||
html:
|
||||
|
||||
networks:
|
||||
proxy-tier:
|
|
@ -0,0 +1,3 @@
|
|||
FROM jwilder/nginx-proxy:alpine
|
||||
|
||||
COPY uploadsize.conf /etc/nginx/conf.d/uploadsize.conf
|
|
@ -0,0 +1 @@
|
|||
client_max_body_size 10g;
|
Loading…
Add table
Add a link
Reference in a new issue