containers / podman-compose

a script to run docker-compose.yml using podman
GNU General Public License v2.0
4.86k stars 465 forks source link

Fix handling of --in-pod argument #918

Closed p12tic closed 2 months ago

p12tic commented 2 months ago

Currently --in-pod handling is broken because the only way to set False is by providing empty argument like "--in-pod=". As of Python 3.7 the solution is to accept string and parse manually.

p12tic commented 2 months ago

This PR reuses ideas by @StaticRocket in https://github.com/containers/podman-compose/pull/712. Thanks a lot for opening that PR.