On Fri, 23 May 2025 00:51:25 -0230
Ayon T
I know you have been asking me to run pasta with arguments with docker, but I'm not sure how to do this (pardon my inexperience). I use an override.conf file to set the default network and port driver of docker, and that's how I use pasta with docker. I have tried looking up how to do it in a different way that gives me more control over the arguments that go in, but I haven't been able to find it. Could you guide me regarding this or point me to a resource?
Apologies for the delay. It looks like you need to rebuild rootlesskit with any option you want to add, here: https://github.com/rootless-containers/rootlesskit/blob/e83d7635183e1125798b... because there's currently no convenient command-line mechanism like the one implemented by Podman, here: https://github.com/containers/common/blob/5a4ca2d5d35571556f6e7d1d5f024c19dc... I guess it would be nice to implement something similar, but I'm not really familiar with rootlesskit otherwise. An alternative could be to use a trivial wrapper at /usr/local/bin/pasta, a simple script doing: -- #!/bin/sh /usr/bin/pasta $@ --whatever-additional-option-here -- -- Stefano