linuxserver / docker-nextcloud

GNU General Public License v3.0
705 stars 128 forks source link

[BUG] Some files have not passed the integrity check error #331

Closed k-matti closed 1 year ago

k-matti commented 1 year ago

Is there an existing issue for this?

Current Behavior

Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the documentation ↗. (List of invalid files… / Rescan…)

Expected Behavior

No error

Steps To Reproduce

  1. Use the newest image
  2. Go to Administration settings

Environment

- OS: linux
- How docker service was installed: apt install

CPU architecture

x86-64

Docker creation

version: "3.7"

services:
  nextcloud:
    image: lscr.io/linuxserver/nextcloud:latest
    container_name: nextcloud
    environment:
      - PUID=1001
      - PGID=100
      - TZ=Europe/Warsaw
    volumes:
      - /share/Nextcloud/config:/config
      - /share/Nextcloud/data:/data
    restart: unless-stopped
    depends_on:
      - mariadb
    networks:
      default:
      nextcloud:
        ipv4_address: 192.168.0.55

  mariadb:
    image: lscr.io/linuxserver/mariadb:latest
    container_name: mariadb
    environment:
      - PUID=1001
      - PGID=100
      - TZ=Europe/Warsaw
      - MYSQL_ROOT_PASSWORD=root
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_PASSWORD=nextcloud
    volumes:
      - /share/Nextcloud/db:/config
    networks:
    - default
    restart: unless-stopped

networks:
  nextcloud:
    name: nextcloud-network
    external:
      name: qnet-static-eth0-0fa2ce

Container logs

.
github-actions[bot] commented 1 year ago

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

ghost commented 1 year ago

same issue! :(

nemchik commented 1 year ago
docker exec -it nextcloud touch /config/www/nextcloud/config/needs_migration
docker restart nextcloud

There should be a button in the nextcloud admin page to rescan the files after you do that.

Should be a one time issue.

austinmini75 commented 1 year ago
docker exec -it nextcloud touch /config/www/nextcloud/config/needs_migration
docker restart nextcloud

There should be a button in the nextcloud admin page to rescan the files after you do that.

Should be a one time issue.

thanks for this