6 Commits

Author SHA1 Message Date
Kasra Bigdeli
ec8371dc12 Updated changelogs
Some checks failed
Run build / build (push) Has been cancelled
Run formatter / check-code-formatting (push) Has been cancelled
Run lint / run-lint (push) Has been cancelled
Build and push the edge image / run-pre-checks (push) Has been cancelled
Build and push the edge image / build-publish-docker-hub (push) Has been cancelled
2025-09-09 22:05:46 -07:00
Kasra Bigdeli
8bd58bf32c Reverted unintended changes in https://github.com/caprover/caprover/pull/2336 2025-09-09 22:03:27 -07:00
Kasra Bigdeli
1b89d9123b Merge pull request #2336 from R3D347HR4Y/excludelogsfrombackups
FIX - Deletes the shared-logs from the copied /captain/data folder upon a backup of the config
2025-09-09 22:02:06 -07:00
R3D347HR4Y
bc2318d056 Reverted settings.json 2025-09-06 09:36:05 +02:00
R3D347HR4Y
2664437159 Update BackupManager.ts 2025-09-06 09:35:35 +02:00
R3D347HR4Y
38096fff15 FIX - Deletes the shared-logs from the copied /captain/data folder upon a backup of the config 2025-09-05 12:34:49 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,7 +1,8 @@
## [Next Version - available as `edge`]
- Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
- Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
- Improved: Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
- Improved: Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
- Improved: Reduced the Backup size by excluding the GoAccess logs [PR-2336](https://github.com/caprover/caprover/pull/2336)
## [1.14.0] - 2025-06-07

View File

@@ -658,7 +658,7 @@ export default class BackupManager {
// https://github.com/jprichardson/node-fs-extra/issues/638
return new Promise(function (resolve, reject) {
const child = exec(
`mkdir -p {dest} && cp -rp ${CaptainConstants.captainDataDirectory} ${dest}`
`mkdir -p ${dest} && cp -rp ${CaptainConstants.captainDataDirectory} ${dest} && mkdir -p ${dest}/shared-logs && rm -rf ${dest}/shared-logs`
)
child.addListener('error', reject)
child.addListener('exit', resolve)