Danil Guskov
Danil Guskov
Unfortunately, the networks in our openstack are arranged so that there is no way to run the containers in bridged mode It seems to me that the mode net=host is...
Why not just make the default port 4444 with the ability to change through the environment variable? in Dockerfile: ```bash ... ENV SELENOID_NODE_PORT 4444 ... ``` in entrypoint.sh: ```bash #!/bin/bash...
Alternatively, you can add an optional entrypoint.sh script argument: --port= Then docker users in net=host mode will be able to run the container through the docker binary: ```json "image": ["docker",...
https://github.com/test-kitchen/kitchen-openstack/issues/181 I have already tried to explain why this is necessary. My idea is to be able to store constant data between tests. (For the Docker users the idea seems...
OK. I will try to do it in the near future
```bash racer find-definition 16 11 src/main.rs ``` racer: log: ```bash DEBUG 2020-02-13T13:44:05.411694815Z: racer::util: Getting rust source path. Trying env var RUST_SRC_PATH. PREFIX 595,600,speak DEBUG 2020-02-13T13:44:05.412323396Z: racer::core: Field: contextstr is |dog|,...
another examples: good: ```rust mod my_trait { pub trait MyTrait { fn my_method(&self); } } mod my_struct { use super::my_trait::MyTrait; pub struct MyStruct { } impl MyTrait for MyStruct {...
I've been using the old [version](https://github.com/emacs-ng/emacs-ng/commit/cdb88483ac932cb8109fc24287bfc80e4c661b67) for a long time: Everything worked well After that, I tried to update emacs-ng several times but ran into this error. I think it...
Even the simplest config does not work for me: ``` (require 'exwm) (require 'exwm-config) (exwm-config-default) ```
> I'm pretty sure he's talking about your emacs-ng build configuration, not your init file. I am building a package with `flake.nix` from the last commit