I have this setup
- container #1 "web"
- container #2 "db"
Now this web container holds my application that uses ffmpeg to record streams. The problem is Im not quite sure where to store my recorded streams and if I should install ffmpeg on the webapplication docker or on the base system. The docker web container containing the app will call ffmpeg true shell script.
What would be the:
- Best location to store my application generated data ( recorded streams ) the web container or the base system filesystem?
- Would it be possible to call ffmpeg installed on the base file system the docker container runs on and also store the generated recorded files there or is that not a good practice?