Tianon Gravi
Tianon Gravi
I'm not a maintainer, but IMO this is the cleanest solution to the problem - having two different ways to lowercase the app class name that both end up in...
Hmm, that's strange; here's the code responsible for that value: https://github.com/mojolicious/mojo/blob/4093223cae00eb516e38f2226749d2963597cca3/lib/Mojolicious/Command/Author/generate/dockerfile.pm#L11-L12 It's generated either from `MOJO_EXE` or `$self->app->moniker`, and I'm a little surprised by this. :grimacing: I guess it maybe...
Ooh, @kraih are you suggesting that having the app generator use `script/app` _all_ the time instead might be acceptable? :eyes: (IMO it still makes sense to try and fix the...
I've used `noatime` on all my disks across all my systems for years now -- no real ill effects that I've noticed (even using Mutt, which is [usually cited as...
@s5unty I started something similar :smile: https://gist.github.com/tianon/8db9b120fe83b7ed24c30b7911d739c9 It'd be awesome if we could get something slightly more official (especially standardized metric names). :innocent:
Looking at the `mfscli` code, scraping this output can't possibly scale -- there are a lot of instances of `if masterconn.version_at_least(x,y,z): ... data.append(...)` (in other words, columns that only even...
Unfortunately not -- I played with it for a while, but didn't love that it was scraping the output of a command whose format might change, so I stopped using...
The problem with the shared volume is that it's essentially a deployment crutch, and it's inherently fragile. What I'd suggest instead of a shared volume (which is going to ultimately...
I think if you've got multiple FPM applications, the _easiest_ way is to leverage Docker's "copy up" functionality (https://docs.docker.com/engine/reference/commandline/service_create/#options-for-named-volumes, default enabled for `-v` but default disabled for `--mount`) and `--volumes-from`...
There's not a way to create such a thing without adding some kind of process supervisor, right? That brings a lot of other problems with it, unfortunately. :disappointed: