To assess the type of architecture of the host we invoke the info on docker cli. ```typescript const result = await ddClient.docker.cli.exec('info', [ '--format', '"{{json .}}"', ]); ``` Which are the possible values of the field Architecture? So far this is they type we are using ```typescript arch: 'none' | 'x86_64' | 'aarch64'; ```