bendem

Results 193 comments of bendem

I have kind of the same problem. ansible.cfg is not at the root of the repository so it's not detected. As such, roles, collections and libraries and custom lints are...

If `ansible-vault` finds a file that's executable, it will execute it without any argument, but that that doesn't work if you use the newer system with named vaults. That's why...

Right, `ssh://` does seem better, but I have no idea where that code is used, building from an ssh url fails with ``` unable to prepare context: path "" not...

This is still relevant: ``` > docker build -t buildah '[email protected]:containers/buildah.git#main:/contrib/docker' Sending build context to Docker daemon 2.56kB Step 1/9 : FROM fedora latest: Pulling from library/fedora e1deda52ffad: Pull complete...

Indeed, it does work when using root. The git clone works ~, It's failing due to iptables errors, but I'm guessing that's an entirely different problem~ (iptables error is fixed...

Patch in case people want it: ```patch From a0eb30551cb4b910523392a851a72816e409aadf Mon Sep 17 00:00:00 2001 From: Benjamin Demarteau Date: Mon, 11 Jul 2022 10:23:40 +0200 Subject: [PATCH] support building ssh:// urls...

For reference, docker checks URLs a bit different and thus doesn't support `git+ssh` either. URL has to start with `git@`, `git://` or being an http url ending with `.git` +...

The change is both incomplete and trivial. I'm unable to make it work rootless or add tests. Feel free to take it as your own. If you really want, I...

It only works in docker if your git server uses git as the connecting user since you the only URL format that will use git+ssh is `git@$server[#ref][:directory]`. i.e. `docker build...

Opened https://github.com/docker/buildx/issues/1209