Konstantin Nazarov
Konstantin Nazarov
I plan to use it for: - Collecting events from CI farm - watching for VCS trends and collecting interesting commits - collecting a digest of warnings from nagios For...
@alias1 @opyate The HUD or programmable personal dashboard is very interesting. Unfortunately, as far as I know, there are no open solutions yet.
Tarantool cartridge has support for https://github.com/tarantool/http/, which is high performance enough for most users. In our tests, it can handle more than 10k rps per core, in addition to business...
The readme doesn't say it, but you are supposed to specify `$USER` environment variable. That variable controls the non-privileged user that will run your app. If you don't set it,...
@josegonzalez sure. Here you go: ```bash git clone https://github.com/racktear/herokuish-flask.git cd herokuish-flask/ docker run --rm -t -i --env USER=herokuishuser -v $(pwd):/tmp/app gliderlabs/herokuish /bin/bash # then in docker: /build /start web ```...
@josegonzalez Did you ever try this scenario yourselves? Maybe I'm doing something obviously wrong. I was unable to find any advice on how to run Herokuish apps in plain Docker,...
So, I've been digging a bit further. Here's what I've found: - To run any command, herokuish first cleans up the `/app` directory: ( see [here](https://github.com/gliderlabs/herokuish/blob/master/include/herokuish.bash#L127) ) - When building...
So, now I'm even more puzzled. How is it supposed to be used? It is clear now why `herokuish test` works fine for me: because during `test`, both `build` and...
I've finally found the incantation that did it for me: ```bash docker run --rm -t -i -e CACHE_PATH=/cache -e USER=herokuishuser -e PORT=5000 -e DYNO=web.1 -v $(pwd):/app gliderlabs/herokuish /bin/bash ``` This...
@josegonzalez to be honest, I don't have an idea why my method worked. And what's the difference between `/app` and `/tmp/app`. I'm glad it worked, but I doubt this should...