refactor(docker): remove debug statement and enhance hostname handling in Docker run conversion

This commit is contained in:
Andras Bacsai
2025-04-23 11:21:37 +02:00
parent bce8bb1f2d
commit 8520beff51
2 changed files with 4 additions and 6 deletions

View File

@@ -1,10 +1,11 @@
<?php
test('ConvertCapAdd', function () {
$input = '--cap-add=NET_ADMIN --cap-add=NET_RAW --cap-add SYS_ADMIN';
$input = '--cap-add=NET_ADMIN --cap-add=NET_RAW --cap-add SYS_ADMIN --hostname=test';
$output = convertDockerRunToCompose($input);
expect($output)->toBe([
'cap_add' => ['NET_ADMIN', 'NET_RAW', 'SYS_ADMIN'],
'hostname' => 'test',
]);
});