Konstantin Shcherban

Results 25 comments of Konstantin Shcherban

> > Struggling without `ssh` build feature in docker-compose. > > Yeah, we're avoiding the use of `docker-compose build` because of this. Any workarounds? We had to write a script...

@maciejjaskowski it's something like below, if `x-build-with-docker-build` is set for service in docker-compose.yml then script will process it. ```bash yq="python3 -m yq" BUILD_COMPONENTS=($(yq -r -e '.services | keys[]' < docker-compose.yml))...

> @kshcherban oh wow, thank you! One noob question: how do you pass the --secrets flag ? Or is it something that you left out as an easy exercise ?...

Alternative approach would be to install vim for X11 (in Fedora package is named `vim-X11`) and set following in `.vimrc`: ```vimrc set clipboard=unnamedplus "Copy text into X11 clipboard too, works...

There's a reason: to enable client(bidi) streaming with grpc-web. Check [this example](https://jbrandhorst.com/post/client-streaming/) for golang.

Jenkins slave and docker host is the same instance. After container is created by jenkins master, slave connects to it via ssh.

Konstantin, Docker proxy in my setup is just nginx that listens on external interface and proxy passes requests to docker socket. Jenkins slave, proxy and docker server are in one...

Ok, i've prepared Dockerfile for you here: https://gist.github.com/kshcherban/44af2e8c95d6619b9e1a Basic auth user is docker, password is also docker. Nginx proxy port is 4243

Currently no, port is hardcoded here: https://github.com/kshcherban/acme-nginx/blob/master/acme_nginx/Acme.py#L128-L129 You are more than welcome to to provide PR with changes.

I will take a look what amount of work should be done when have a free time. If you want to contribute you're always welcome.