Merge pull request #168 from cschug/pin_version_nextcloud

Pin version of Nextcloud and its MariaDB
This commit is contained in:
Christoph Schug 2024-03-05 12:14:38 +01:00 committed by GitHub
commit 989a080d16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ volumes:
nextcloud-db:
services:
nextcloud-app:
image: nextcloud:latest
image: docker.io/library/nextcloud:28.0.3-apache
container_name: nextcloud-app
ports:
- 80:80
@ -17,7 +17,9 @@ services:
- MYSQL_HOST=nextcloud-db
restart: unless-stopped
nextcloud-db:
image: mariadb:latest
# See compatibility matrix for Nextcloud 28
# https://docs.nextcloud.com/server/28/admin_manual/installation/system_requirements.html
image: docker.io/library/mariadb:10.6.17
container_name: nextcloud-db
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes: