Saidul Islam
Saidul Islam
This could be related to either reading the whole file into memory or using PutObjectCommand in https://github.com/Dokploy/dokploy/blob/e7ed3c300bd253770134f367b8a43cb73b7cf449/apps/dokploy/server/utils/backups/utils.ts#L30-L37 Using multipart upload may solve this issue. Also using rclone (discussed in #416...
@Siumauricio Thank you so much for adding rclone support. However we still can't backup to any provider other than S3. Rclone supports configuration via: - Environment variables: https://rclone.org/docs/#config-file - Connection...
Great work on your PR @vishalkadam47 Could you please also consider following things for rclone? 1. Support [Crypt](https://rclone.org/crypt/) This basically encrypts other storage systems making them E2EE. 2. Support for...
const buttonEntries = [ ... jQuery('button', form.$form) ].map(entry => [entry.name, entry.value]); jQuery does not return iterable data. temporary solution could be using Array.from: ``` const buttonEntries = [ ... Array.from(jQuery('button',...