You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I tried all combinations I could think of but could not figure out how to create a TCP namespace forwarding of a host port to the container. Specifically I want to add 3128 from the host to the container and with the following lines in containers.conf I got it working just fine:
[network]
pasta_options = ["-T", "3128:3128"]
However, I don't want to add this to all containers, so I tried things with podman-py to no success! The closest suggestion is available at #248 (comment) however my attempts resulting in some permission errors which I did not debug further (since using containers.conf just worked).
Hi, I tried all combinations I could think of but could not figure out how to create a TCP namespace forwarding of a host port to the container. Specifically I want to add 3128 from the host to the container and with the following lines in
containers.conf
I got it working just fine:However, I don't want to add this to all containers, so I tried things with podman-py to no success! The closest suggestion is available at #248 (comment) however my attempts resulting in some permission errors which I did not debug further (since using
containers.conf
just worked).More Ideas were things like
network_options={"pasta": ["T=3128:3128"]}
or evennetwork_options={"pasta": ["T", "3128:3128"]}
.What is the right way?
The text was updated successfully, but these errors were encountered: