Fabrice Flore-Thébault

Results 65 comments of Fabrice Flore-Thébault

Referenced in https://issues.redhat.com/browse/RHDEVDOCS-4198

Docs team is not maintaining the chectl documentation. Therefore, removing the team/docs label.

Hi, I am also using podman and installed `podman-docker` as well. I very much like the fact that with podman, the `-u` option becomes unnecessary. I really would like to...

The `podman-docker` package installs this shell script in `/usr/bin/docker`: ``` #!/usr/bin/sh [ -f /etc/containers/nodocker ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec...

Podman supports the `-u` option. See https://github.com/containers/libpod/issues/6431 In verbose mode the `pre-commit` error is: ``` Error: cannot setuid: Invalid argument: OCI runtime error ``` Indeed: ``` $ podman run antora/antora...

Looking at last comments in https://github.com/containers/libpod/issues/6431, my problem is that my user has id 105971, which is greater than the max of 65536, so the `-u` option fails. But, using...

How to detect a rootless container daemon: * rootless docker Installed a rootless docker with: ``` curl -sSL https://get.docker.com/rootless | sh ``` Then: ``` $HOME/bin/docker system info| grep rootless WARNING:...

A non rootless installation of docker doesn't have the rootless keyword at all, A rootless installation of docker has the `rootless`, Podman has: `rootless: true` So if the command `docker...

The complete code would be like that? ```python def get_docker_user() -> Tuple[str, ...]: # pragma: win32 no cover try: rootless = False output = subprocess.check_output(('docker', 'system', 'info'), text=True) for line...

It's my first attempt to write a python patch ever. I apologize if I did it wrong.