mirror of
https://github.com/nextcloud/docker.git
synced 2025-05-22 15:30:53 +02:00
Updated examples
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
This commit is contained in:
parent
86ab9d769c
commit
2bfd475b13
17 changed files with 96 additions and 35 deletions
|
@ -1,4 +1,6 @@
|
|||
services:
|
||||
# Note: MariaDB is an external service. You can find more information about the configuration here:
|
||||
# https://docs.linuxserver.io/images/docker-mariadb/#environment-variables-e
|
||||
db:
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED
|
||||
|
@ -12,6 +14,8 @@ services:
|
|||
env_file:
|
||||
- db.env
|
||||
|
||||
# Note: Redis is an external service. You can find more information about the configuration here:
|
||||
# https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/docker/#configuration
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
|
@ -33,9 +37,6 @@ services:
|
|||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
# Added proxy container dependency below.
|
||||
# It is unclear on when or why it happens, but sometimes NC manages to start before the proxy
|
||||
# and it breaks for whatever weird reason resulting in the need of manual proxy container restart.
|
||||
- proxy
|
||||
networks:
|
||||
- proxy-tier
|
||||
|
@ -52,6 +53,9 @@ services:
|
|||
- db
|
||||
- redis
|
||||
|
||||
# Note: Nginx-proxy is an external service. You can find more information about the configuration here:
|
||||
# Warning: Do not use :latest tags of nginx-proxy unless absolutely sure about the consequences.
|
||||
# https://hub.docker.com/r/nginxproxy/nginx-proxy
|
||||
proxy:
|
||||
build: ./proxy
|
||||
restart: always
|
||||
|
@ -69,6 +73,8 @@ services:
|
|||
networks:
|
||||
- proxy-tier
|
||||
|
||||
# Note: Letsencrypt companion is an external service. You can find more information about the configuration here:
|
||||
# https://github.com/nginx-proxy/acme-companion/tree/main/docs#readme
|
||||
letsencrypt-companion:
|
||||
image: nginxproxy/acme-companion
|
||||
restart: always
|
||||
|
@ -85,7 +91,7 @@ services:
|
|||
depends_on:
|
||||
- proxy
|
||||
|
||||
# self signed
|
||||
# self signed,outdated
|
||||
# omgwtfssl:
|
||||
# image: paulczar/omgwtfssl
|
||||
# restart: "no"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
FROM nginxproxy/nginx-proxy:alpine
|
||||
FROM nginxproxy/nginx-proxy:1.7-alpine
|
||||
|
||||
COPY uploadsize.conf /etc/nginx/conf.d/uploadsize.conf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue