Good morning, I am using a node application in a docker container. In a node route I would like to be able to execute a command on the docker host as a host.
I tried the command (result: "/host no usch file or directory")
const exec = require('child_process')
exec("chroot /host bash -c 'ls -l'")
But withou success