Skip to content

Commit 99b1e01

Browse files
committed
cvm: Set max app compose to 256K
1 parent 8fa3068 commit 99b1e01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dstack-util/src/system_setup.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ impl HostShared {
190190
mkdir -p $host_shared_copy_dir;
191191
info "Copying host-shared files";
192192
}?;
193-
copy(APP_COMPOSE, SZ_1KB * 128, false)?;
194-
copy(SYS_CONFIG, SZ_1KB * 10, false)?;
193+
copy(APP_COMPOSE, SZ_1KB * 256, false)?;
194+
copy(SYS_CONFIG, SZ_1KB * 32, false)?;
195195
copy(INSTANCE_INFO, SZ_1KB * 10, true)?;
196196
copy(ENCRYPTED_ENV, SZ_1KB * 256, true)?;
197197
copy(USER_CONFIG, SZ_1MB, true)?;

0 commit comments

Comments
 (0)