I need to deploy a slightly odd file converter that needs a temporary MySQL database for the duration of each run. This is unmaintained open source software so I want to pin all the versions and then never upgrade anything. That means I don't want to just install it directly on my server.<p>I like running things in Docker but it isn't designed for multiple independent processes.<p>Is there something obvious I'm missing? I'm relatively new to software development.
Pandoc[1] converts document files without the need to use a mysql database. windows batch file example [2]<p>[1] pandoc : <a href="https://opensource.com/article/20/5/pandoc-cheat-sheet" rel="nofollow">https://opensource.com/article/20/5/pandoc-cheat-sheet</a><p>[2] windows batch script example : <a href="https://stackoverflow.com/questions/27852067/batch-convert-files-with-pandoc-in-windows" rel="nofollow">https://stackoverflow.com/questions/27852067/batch-convert-f...</a>