In my node project, I would like to define a script in my package.json
file like:
{
"scripts": {
"runTestsWithTilt": "<some command to run tests within a container launched by tilt>"
}
}
Is there a tilt
cli command where I could run an arbitrary command through docker exec
?
Something like: tilt docker exec <container-name> <command-to-run>