Skip to content

Commit df0d608

Browse files
authored
Merge pull request #349 from Dstack-TEE/larger-compose
cvm: Set max app compose size to 256K
2 parents 8fa3068 + 99b1e01 commit df0d608

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)