0
0
Fork 0
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:
Kaloyan Nikolov 2025-03-04 17:18:49 +02:00
parent 86ab9d769c
commit 2bfd475b13
17 changed files with 96 additions and 35 deletions

View file

@ -1,4 +1,6 @@
services:
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
# https://github.com/docker-library/docs/blob/master/postgres/README.md
db:
image: postgres:alpine
restart: always
@ -7,6 +9,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
@ -44,6 +48,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
@ -60,6 +67,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
@ -74,7 +83,7 @@ services:
depends_on:
- proxy
# self signed
# self signed, outdated
# omgwtfssl:
# image: paulczar/omgwtfssl
# restart: "no"

View file

@ -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