-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
1,017 additions
and
240 deletions.
There are no files selected for viewing
11 changes: 0 additions & 11 deletions
11
.examples/docker-compose/with-nginx-proxy/apache/app/redis.php
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
.examples/docker-compose/with-nginx-proxy/fpm/app/redis.php
This file was deleted.
Oops, something went wrong.
110 changes: 0 additions & 110 deletions
110
.examples/docker-compose/with-nginx-proxy/fpm/web/nginx.conf
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/apache/app/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/apache/app/redis.config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$CONFIG = array ( | ||
'memcache.locking' => '\OC\Memcache\Redis', | ||
'redis' => array( | ||
'host' => 'redis', | ||
'port' => 6379, | ||
), | ||
); |
File renamed without changes.
100 changes: 100 additions & 0 deletions
100
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/apache/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
version: '3' | ||
|
||
services: | ||
db: | ||
image: mariadb | ||
# image: mysql | ||
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 | ||
volumes: | ||
- nextcloud:/var/www/html | ||
environment: | ||
- VIRTUAL_HOST= | ||
- LETSENCRYPT_HOST= | ||
- LETSENCRYPT_EMAIL= | ||
env_file: | ||
- db.env | ||
depends_on: | ||
- db | ||
- redis | ||
networks: | ||
- proxy-tier | ||
- default | ||
|
||
cron: | ||
build: ./app | ||
restart: always | ||
volumes: | ||
- nextcloud:/var/www/html | ||
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' | ||
depends_on: | ||
- db | ||
- redis | ||
|
||
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: |
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/fpm/app/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM nextcloud:fpm | ||
|
||
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php | ||
|
||
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php |
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/fpm/app/redis.config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$CONFIG = array ( | ||
'memcache.locking' => '\OC\Memcache\Redis', | ||
'redis' => array( | ||
'host' => 'redis', | ||
'port' => 6379, | ||
), | ||
); |
File renamed without changes.
108 changes: 108 additions & 0 deletions
108
.examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/fpm/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
version: '3' | ||
|
||
services: | ||
db: | ||
image: mariadb | ||
# image: mysql | ||
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 | ||
volumes: | ||
- nextcloud:/var/www/html | ||
env_file: | ||
- db.env | ||
depends_on: | ||
- db | ||
- redis | ||
|
||
web: | ||
build: ./web | ||
restart: always | ||
volumes: | ||
- nextcloud:/var/www/html:ro | ||
environment: | ||
- VIRTUAL_HOST= | ||
- LETSENCRYPT_HOST= | ||
- LETSENCRYPT_EMAIL= | ||
depends_on: | ||
- app | ||
networks: | ||
- proxy-tier | ||
- default | ||
|
||
cron: | ||
build: ./app | ||
restart: always | ||
volumes: | ||
- nextcloud:/var/www/html | ||
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' | ||
depends_on: | ||
- db | ||
- redis | ||
|
||
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: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.