I want to run an outdated centos6 compatible application that no longer supports some dependencies and therefore is not compatible with centos7. This application is called pdftk.
I want (if possible), run pdftk in the centos6 docker image and put this application in centos7 ...
The application performs a couple of actions:
It accepts a PDF document as input and form data as input → fills a PDF with form data → displays a completed PDF file.
A command might look something like this:
pdftk input.pdf --do-something output.pdf
Is it possible to do something similar with a docker?
So far, I have managed to initialize the centos6 image and successfully install pdftk. Any help with the next part (if possible) would be most appreciated.
thanks
source share