←back to thread

272 points abdisalan | 1 comments | | HN request time: 0s | source
Show context
dmuth ◴[] No.42183995[source]
This is one reason why whenever I build a new project, I build it inside of a Docker container.

That way, the project has just the dependencies it needs, and I know I can rebuild it at some point in the future and will be unlikely to run into problems when I do.

replies(2): >>42184562 #>>42184788 #
1. brokencube ◴[] No.42184562[source]
My first step now when trying to resurrect old projects is to create a Docker container for it - that way I can install any old versions of anything (like node or PHP) I need without having to worry about it polluting anything else on the system.