Tim Garton

Results 5 comments of Tim Garton

+1 since upstart supports user jobs and the newer session jobs, you can run upstart jobs without using sudo at all

No, they're just like usual upstart jobs except they run in the context of an unprivileged user. See http://upstart.ubuntu.com/cookbook/#user-job and http://upstart.ubuntu.com/cookbook/#session-job

I was having problems related to bufexplorer handling of the BufEnter event and was able to work around it with the `eventignore` option, you might be able to do something...

Looks like this is caused by omnicompletion loading the bundle which then breaks `rufo`. These environment variables seem to be the main culprits: `GEM_HOME` `GEM_PATH` and `RUBYOPT`. Doing something like:...

@djtm we were able to work around it with Dockerfiles starting off as such: ``` FROM golang:1.9.2 MAINTAINER radar ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/gopath/bin RUN mkdir /gopath ENV GOPATH=/gopath ADD backend /gopath/src/github.com/foo/bar/backend ......