mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-22 07:53:16 +01:00
a script to run docker-compose.yml using podman
844c23d553
new switches: --dry-run, --no-cleanup, --podman-path |
||
---|---|---|
examples | ||
.gitignore | ||
LICENSE | ||
podman-compose.py | ||
README.md |
PodMan-Compose
A script to run docker-compose.yml
using podman,
doing necessary mapping to make it work rootless.
NOTE
it's still underdevelopment and does not work yet.
Mappings
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 containeridentity
- 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
Examples
When testing the AWX
, if you got errors just wait for db migrations to end.
Working Example
Tested on latest podman (commit 349e69..
on 2019-03-11)
By using many containers on a single pod that shares the network (services talk via localhost)
./podman-compose.py -t 1podfw -f examples/awx/docker-compose.yml up
Or by reusing a container network and --add-host
$ ./podman-compose.py -t cntnet -f examples/awx/docker-compose.yml up
Or by using host network and localhost works as in
$ ./podman-compose.py -t hostnet -f examples/awx-hostnet-localhost/docker-compose.yml up
in progress work
./podman-compose.py -t 1pod -f examples/awx/docker-compose.yml up