tgotwig / vidmerger

📼 Merge video & audio files via CLI
https://tgotwig.github.io/vidmerger
113 stars 10 forks source link

Docker command line does nothing #18

Closed guettli closed 3 years ago

guettli commented 3 years ago

I executed the command line like explained in the README:

docker container run -it --rm -v vidoeos:/data tgotwig/vidmerger

guettli@yoga15:~$ docker container run -it --rm -v  django-con-video:/data tgotwig/vidmerger
Unable to find image 'tgotwig/vidmerger:latest' locally
latest: Pulling from tgotwig/vidmerger
cbdbe7a5bc2a: Already exists 
8b1398788c7d: Pull complete 
d10d702f5385: Pull complete 
Digest: sha256:dce94b631f7d8cae10355c892034f6890cf4c7694ed80d7515d7db8814b763a9
Status: Downloaded newer image for tgotwig/vidmerger:latest

But after that nothing happend.

Please explain in the README what additional steps are needed.

tgotwig commented 3 years ago

Hey @guettli 👋 Thanks for the information! I'll take a look 🕵️

tgotwig commented 3 years ago

Ahh right, you need to tell Docker the absolute path to your videos, in your case: /.../django-con-video. With Bash you can use a shortcut:

docker container run -v `pwd`/data:/data tgotwig/vidmerger

Will update README 😇