6 ms·
mrsk doesn't require rails. It makes no assumptions about what you're running, we deploy a golang service with it. mrsk does require a ruby install on your mac
by mr_ndrsn 3y ago
mrsk doesn't require rails. It makes no assumptions about what you're running, we deploy a golang service with it.
mrsk does require a ruby install on your machine, tho.
- KingOfCoders 3y agoI would be very interested in that, do you have a writeup?
- mr_ndrsn 3y agoI don't think there's a writeup out there, but mrsk just uses docker under the hood. So, if you have a CMD in your Dockerfile, it will use that. If you have an image that can run multiple things, like a rails app that can run the app process for web traffic by default, but it can also run job workers with the right command, you can provide the cmd in the mrsk config. You can see this in the jobs role in the example: https://github.com/mrsked/mrsk#using-different-roles-for-servers https://github.com/mrsked/mrsk#using-different-roles-for-ser....
- KingOfCoders 3y agoThanks!