|
|
|
|
|
by dergachev
3768 days ago
|
|
Before fig, Docker build repositories often have awkward arguments to build or run a container, and that's where I first saw people using a Makefile as basically a bash script file. I copied it and since then I've used it like 100 times since, it feels a lot more easier than the above bash script approach, though for reasons I can't quite put into words right now. It also turns out that dependencies creep up pretty often, so shortly after we started abusing the Makefile, we also started using it "right" too. Examples:
* https://github.com/dergachev/screengif/blob/master/Makefile
* https://github.com/dergachev/drupal-docker-marriage/blob/mas... |
|