How Hard Is It to Containerize Outdated Software in Docker?

0
5
Asked By CuriousCat1234 On

I'm curious about how feasible it would be for someone new to Docker to create a container for a piece of software that's kinda old and hasn't been updated in a long time. The software I like is still running on Windows, but the Linux version is pretty much unusable now. The website for it is still active, and I can download the program, but it won't install because of broken dependencies. It's been about ten years since it got any updates. I do have some old Linux distros where it can install, but using those for daily tasks isn't ideal.

3 Answers

Answered By DockerDude17 On

It could be doable! You'd just need a few lines of code to pull a base image and get the software running. The key thing to watch for is whether the base image is still available, because it might be removed if it's too outdated or insecure. But assuming you figure out the dependencies and can find a runnable base image, it shouldn’t be too tough to get it up and running.

CuriousCat1234 -

Awesome, thanks for the info!

Answered By WritingWhiz42 On

The software is Trelby, a writing program. I haven't tried it on Debian yet. I used to run it on Mint and Elementary, and I even tried it on a Raspberry Pi for PC.

DevDude55 -

Hey, Trelby is open-source, so you could actually try building it yourself! Check out their GitHub page for the details.

CodeNinja77 -

Also, I noticed Trelby has a Flatpak package that was updated just a few months ago, so that's another option to explore!

Answered By TechieTurtle89 On

Which software are you talking about? If it runs well on Debian, it can be relatively simple to make a Docker image and run it as a container. More details would definitely help!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.