forked from extern/podman-compose
588 B
588 B
Overview
1podfw
- create all containers in one pod (inter-container communication is done vialocalhost
), doing port mapping in that pod1pod
- create all containers in one pod, doing port mapping in each container (does not work)identity
- no mappinghostnet
- use host network, and inter-container communication is done via host gateway and published portscntnet
- create a container and use it via--network container:name
(inter-container communication vialocalhost
)publishall
- publish all ports to host (using-P
) and communicate via gateway