Lajos Papp

Results 17 comments of Lajos Papp

I wanted to have a "programatic" way of figuring out the random path, other than parsing the log output. I use gotty behind a proxy, so I can hide the...

Hi @lizrice I'm using the release v2.0.0-alpha.3 and works stable on gke. Instead of `go get` use the prebuilt binaries from github release. You can give a go to my...

You can test this PR applied to resolvable as `lalyos/resolvable:fqdn-ptr` ``` $ docker run -d \ --hostname resolvable \ -v /var/run/docker.sock:/tmp/docker.sock \ -v /etc/resolv.conf:/tmp/resolv.conf \ lalyos/resolvable:fqdn-ptr ``` and than start...

reverse lookups (PTR records) is already working, it just resoles to the short name. This PR is about resolving reverse lookups to fqdn instead of short hostname. So right nowit...

#22 implements fqdn names. You can even give it a try by using `lalyos/resolvable:fqdn-ptr` image. See #22 comments. Just a quick note on docker-compose: you can specify fqdn names 2...

Filtering is already supported on the docker events endpoint: https://docs.docker.com/engine/reference/commandline/events/#filtering, for example for the cli: ``` docker events --filter label= docker events --filter label== ``` So if you need a...

@cr7pt0gr4ph7 > I would say that the events are an implementation detail between registrator and docker. What I want to say as a user is "register any container that matches...

Hi, I'm just run into a similar issue. Actually I was using [autok3s](https://github.com/cnrancher/autok3s) to start a single-node cluster. The instance is started on google cloud and using the base image:...

Until this one gets implemented, you can just use a naming convention, by prefixing each block name with the desired number. This combined with the interactive mode shown in https://github.com/stateful/runme/issues/38#issuecomment-1299627603...

You can achieve it with the current runme with the help of [fzf](https://github.com/junegunn/fzf) [jq](https://stedolan.github.io/jq/) and xargs: ``` runme json \ | jq '.document[]|select(.name)|.name' -r \ | fzf --preview='runme print {}'...