Jason Staten

Results 90 comments of Jason Staten

dokku-shoreman overwrites the `/start` file in the image, altering the way processes get started from normal dokku. There may be an inconsistency that the plugin isn't accounting for. The error...

Looks like dokku-shoreman isn't compatible with 0.4.x at the moment. Thanks for filing the issue.

Most likely `rm -r /var/lib/dokku/plugins/dokku-shoreman`, assuming that's where your plugin folder is, and then redeploy.

It is a good idea. I'm in debate about if it should be `SHOREMAN_CONCURRENCY="web=1,worker=2"` to match the `--concurrency` flag of `foreman`. https://ddollar.github.io/foreman/ What do you think @sdbondi ?

The script is not designed to be run directly. It runs within the context of a `dokku recieve`. Installation steps are in the readme. To investigate the stopped container call...

@fdaciuk what are your thoughts on just using native promises? http://caniuse.com/#feat=promises

I vote for the simple route of assuming the native Promise global exists. It's available on every modern platform and most polyfills support creating a global if necessary. Using the...

If they don't have a promise polyfill included and they have to support legacy environments without native Promises built in then they should use a polyfill. There shouldn't be a...