charmbracelet / vhs

Your CLI home video recorder 📼
MIT License
14.72k stars 247 forks source link

command not found #230

Closed denis-akvelon closed 1 year ago

denis-akvelon commented 1 year ago

I ran vhs via docker "sudo docker run --rm -v $PWD:/vhs ghcr.io/charmbracelet/vhs demo.tape". In the demo.tape I have only one row: Type "git commit -m" Sleep 500ms Enter. The GIF file was created successfully, but the command was followed by an error: "bash: git: command not found." I have no idea how to avoid it. test

bashbunni commented 1 year ago

As mentioned in this issue, it depends on the host to have the required software installed. In this case, you'll want to add Git to your Docker container. You should be able to add Git install instructions to your Dockerfile to build a Docker image that has Git installed. Running VHS from a container using that image would fix your problem!

caarlos0 commented 1 year ago

correct @bashbunni! Thanks, closing!