Add caching program Redis for Nextcloud.

This commit is contained in:
2023-08-20 15:42:59 -07:00
parent a81b8530da
commit dad8005358

View File

@@ -4,6 +4,7 @@
# Changelog: # Changelog:
# 2023-07-16 Change from mariadb:10.5 to 10.6. # 2023-07-16 Change from mariadb:10.5 to 10.6.
# 2023-08-20 Add Redis. (https://markontech.com/docker/setup-nextcloud-with-redis-using-docker/)
version: '2' version: '2'
@@ -20,6 +21,11 @@ services:
- MYSQL_USER=nc - MYSQL_USER=nc
- MYSQL_PASSWORD=changeme - MYSQL_PASSWORD=changeme
redis:
image: redis
restart: always
command: redis-server --requirepass someredispassword
app: app:
image: nextcloud image: nextcloud
restart: always restart: always
@@ -27,6 +33,7 @@ services:
- 8080:80 - 8080:80
links: links:
- db - db
- redis
volumes: volumes:
- ../../Volumes/Nextcloud/nextcloud:/var/www/html - ../../Volumes/Nextcloud/nextcloud:/var/www/html
environment: environment:
@@ -35,3 +42,4 @@ services:
- MYSQL_PASSWORD=changeme - MYSQL_PASSWORD=changeme
- MYSQL_HOST=db - MYSQL_HOST=db
- PHP_UPLOAD_LIMIT=5G - PHP_UPLOAD_LIMIT=5G
- REDIS_HOST_PASSWORD=someredispassword