Fabian Koehler
Fabian Koehler
I just realized I can add `~/.profile` and add my http_proxy vars there. Would that solve my problem? I mean would docker then also use that if it tries to...
Ok, I just checked it and adding the http_proxy to ~/.profile does not help at all.
Essentially we need something like: https://github.com/boot2docker/boot2docker#docker-daemon-options
Looking at https://github.com/nlf/dhyve-os/blob/master/rootfs/etc/default/docker I tried adding some "export http_proxy=...." to that inside my dhyve vm but it did not help either (after restarting the vm) Any ideas for a workaround?
Great, thanks! Is there a quick work around you have in your mind? i.e. shouldn't it work if I add the exports to the scripts which starts the docker daemon...
I also run into this issue. I am unable to run any tests now. It is not related to Selenium. it looks like what @matthughes said that the test loader...
In my very specific case I was able to fix the error by removing this line: `jsEnv := new org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv()` and adding this one: `requireJsDomEnv in Test := true` Then...
Based on @szeiger's comment above https://github.com/slick/slick/issues/1161#issuecomment-230741592 one can write the following implicit class: ```scala trait SlickPlainSqlActionBuilderSyntax { implicit class SlickPlainSqlActionBuilderSyntax(a: SQLActionBuilder) { def ++(b: SQLActionBuilder): SQLActionBuilder = concat(a, b) def...
We are experiencing the same issue. I send in 200k log messages, We are using docker in kubernets. The docker logrotation rotates every 50 MB with 5 total files max....