-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
Description
I read through #1350 but I'm still a bit confused. I'd expect the following to work (dokku 4.1):
- Have a Dockerfile deployment that works.
- Add a Procfile that defines different commands for a
weband aworkerprocess type. - Deploy and have the
webprocess scale to 1 using the command from the Procfile. - Scale the
workertype to 1 usingps:scaleand have another instance of the docker image started running theworkercommand from the Procfile.
Is this a thing that's possible? I'm unclear on why It'd be required to do this in the app/image itself since buildpack-based deploys do this exactly and are also docker images. If you do think it's possible w/o breaking some kind of other feature compatibility then I'm happy to work on it.