Data export failed

I Installed vikunja 1.0.0 rc3 on a raspberry using docker and portainer.

I tried to export my data. I got no error message, Trying to download the file failed. In the log I found an error:

time=2026-01-18T09:09:48.046Z level=ERROR msg=“Error while handling message 66ef5d1f-2414-448a-a4bb-d056da8cc765, handler_poisoned=user.export.requested.handle.user.data.export, subscriber_poisoned=gochannel.GoChannel, reason_poisoned=mkdir /app/vikunja/files/user-export-tmp/: permission denied, topic_poisoned=user.export.requested, payload={“user”:{“id”:1,“name”:“”,“username”:“werner”,“created”:“2026-01-16T09:54:54Z”,“updated”:“2026-01-16T12:35:26Z”}}”

Can anybody help to solve the problem

I don’t have a solve, but I’ve observed the same behavior. I’m on the same version level.

Take a look at this error message in the logs you posted:

mkdir /app/vikunja/files/user-export-tmp/: permission denied

You need to fix the permissions on the files volume.

This got me to where I needed to be.

In retrospect, I think my errors were different than what @wkaa saw, but the core problem was the same. The /tmp wasn’t present.

I’m painfully new at Docker, so I had to tiptoe along with Claude to find the issue based on the interpretive clue @kolaente provided.

At first I had a secondary problem because when I opened the console for the vikunja Docker container (on my unraid server), it briefly flashed and closed. Claude helped me establish that this was, in fact, expected as I’m running the Vikunja container I found in the Unraid app store which is a distroless container image.

Hence no console and no /tmp.

Once I created that directory from the Unraid console and mapped it in the Docker container settings, the export process proceeded correctly.

Well, mostly. The export initiated correctly but said it would notify me by email, which I don’t have set up. After waiting a bit I was able to download the export even without being notified, so that’s good.

But perhaps a valuable update to the export flow would be to have some form of notification show up in Vikunja itself when the export completes.

Similarly, the original failed export was not surfaced in the UI. There was no sign of an issue so it wasn’t clear that I should go log diving to find the error.

Regardless, I’ve got what I need now.

Thanks!!