diff --git a/systems/palatine-hill/docker/nextcloud.nix b/systems/palatine-hill/docker/nextcloud.nix index d88567f..ea3fe70 100644 --- a/systems/palatine-hill/docker/nextcloud.nix +++ b/systems/palatine-hill/docker/nextcloud.nix @@ -8,13 +8,13 @@ let # nextcloud-image = import ./nextcloud-image { inherit pkgs; }; nextcloud-base = { # image comes from running docker compose build in nextcloud-docker/.examples/full/apache - image = "nextcloud-nextcloud"; + image = "docker.io/library/nextcloud-nextcloud"; # pull = "always"; # do NOT enable pull here, this image is generated based on a custom docker image hostname = "nextcloud"; volumes = [ "${nextcloud_path}/nc_data:/var/www/html:z" - "${nextcloud_path}/nc_php:/usr/local/etc/php" + #"${nextcloud_path}/nc_php:/usr/local/etc/php" "${nextcloud_path}/nc_prehooks:/docker-entrypoint-hooks.d/before-starting" #"${nextcloud_path}/remoteip.conf:/etc/apache2/conf-enabled/remoteip.conf:ro" ];