From 983c0f53af5cd3123e8024541c77ede6b7ed812b Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 4 Nov 2024 15:57:18 -0800 Subject: [PATCH] nextcloud: Switch to using FreedomBox container registry - Should fix issues related to rate limiting on docker.io and improve privacy for our users. Tests: - Install nextcloud, install succeeds. 'podman image list' shows that image is from registry.freedombox.org. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/nextcloud/privileged.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/nextcloud/privileged.py b/plinth/modules/nextcloud/privileged.py index 04c378521..f7da36d57 100644 --- a/plinth/modules/nextcloud/privileged.py +++ b/plinth/modules/nextcloud/privileged.py @@ -18,7 +18,7 @@ from plinth.actions import privileged, secret_str CONTAINER_NAME = 'nextcloud-freedombox' SERVICE_NAME = 'nextcloud-freedombox' VOLUME_NAME = 'nextcloud-freedombox' -IMAGE_NAME = 'docker.io/library/nextcloud:stable-fpm' +IMAGE_NAME = 'registry.freedombox.org/library/nextcloud:stable-fpm' WWW_DATA_UID = '33' DB_HOST = 'localhost'