NextCloudPi Nc-backup did not create backups in External HDD + Raspi 4 + Kubuntu 64

I am currently searching for why my Nextcloud backup folder empty, while the nc-backup reporting successful backup. I see the zip being compiled as bak, but the file just vanish after the backup proces finished.

(。•́︿•̀。)

Renan

Environment

what is the backup location you are using in nc-backup

Basically, in the next folder from the Nextcloudpi data, inside the external HDD.
image

media/[username]/MyData/NextCloudPi/Backup

My compose.yml look like this
version: ‘3’
services:
nextcloudpi:
image: ownyourbits/nextcloudpi-armhf
restart: always
command: “${IP}”
ports:
- “80:80”
- “443:443”
- “4443:4443”
volumes:
- /media/[username]/MyData/NextCloudPi/Data:/data
- /etc/localtime:/etc/localtime:ro
container_name: nextcloudpi

(。•́︿•̀。)

I’ d try, adding the Backup location to your volumes

  • /media/[username]/MyData/NextCloudPi/Backups:/backups

Docker can not navigate outside it’s container otherwise.

I just tried after reading your post.

I stop rm revise compose.yml and compose up again according to your suggestion.

now the response is slightly different, the backup start by calculating space size.

the whole process run like normal, but the backup folder still empty.

(。•́︿•̀。)