Candid Dauth
Candid Dauth
This is driving me crazy. Has anyone managed to get this to run? I have installed docker-compose to a virtual env using `pip`, but Ansible keeps telling me that there...
Thanks! This is how I installed the pip module on the server: ```yaml - pip: name: docker-compose virtualenv: /usr/local/pip ``` And this is how I configured my task that uses...
@felixfontein It works, thanks!
The solution described above sounds to me like a workaround and not like a solution. The issue seems like docker is somehow caching the DNS resolution information when it starts...
What I don't understand is why it happened just now, while others have reported this already several months ago (see #1304).
This is still a blocker for me. I have found the following workaround, which seems to work for me: ```typescript export interface TestModel extends Model { id: string; } export...
Hey @waynevanson, great to hear that someone is taking care of this! I just tried to set this up on my server, but it seems that the CGIAR URLs to...
Now the CGIAR URLs work again. I remember reading somewhere that they are frequently offline on weekends, so that seems to be the case.
> I don't think you should have to rename to .mjs, you should be able to just specify different export types in package.json This will not work in a Node.js...
@jacobclarke92 It's true that `.js` will work if `"type": "module"` is set. However it comes with the following implications: * All `.js` files in the project will be interpreted as...