Is it safe to delete /tmp/chrome-user-datas on docker instance

Hello,

I want to ask if it is safe to delete the data in the /tmp/chrome-user-datas folder, which became full after generating a significant amount of pdf files?

I am on the latest version in docker self-hosted.

Thanks

You can delete everything below /tmp at any time. This folder will be wiped anyway, everytime you update the SeaTable Server, as this folder is not persisted in the host.

Here is also a quite useful command to delete only stuff older than 2 days:

docker exec -it seatable-server find /tmp -type f -mtime +2 -delete

Best regards
Christoph

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.