From 862a59c0688a77458c4e507757fef1179199c2f4 Mon Sep 17 00:00:00 2001 From: bmen Date: Mon, 17 May 2021 18:19:49 +0200 Subject: [PATCH] updated db, redis and nginx and set required redis pw variable --- docker-compose.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 04876df..f4d5b68 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,7 +9,7 @@ networks: services: db: - image: mariadb:10.5.3 + image: mariadb:10.6 command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW restart: always volumes: @@ -21,14 +21,17 @@ services: - backend-nextcloud redis: - image: redis:6.0-alpine + image: redis:6.2-alpine container_name: nextcloud-redis + env_file: + - redis.env + command: redis-server --requirepass ${REDIS_HOST_PASSWORD} networks: - backend-nextcloud restart: always app: - image: nextcloud:19.0.7-fpm-alpine + image: nextcloud:20.0.0-fpm-alpine restart: always volumes: - /opt/docker/nextcloud/app:/var/www/html @@ -46,7 +49,7 @@ services: container_name: nextcloud web: - image: nginx:1.19-alpine + image: nginx:1.20-alpine restart: always volumes: - /opt/docker/nextcloud/app:/var/www/html:ro @@ -59,7 +62,7 @@ services: container_name: nextcloud-nginx cron: - image: nextcloud:19.0.7-fpm-alpine + image: nextcloud:20.0.0-fpm-alpine restart: always volumes: - /opt/docker/nextcloud/app:/var/www/html -- 2.26.3