From ea166f1da3257c4a277b8ec842f9bdfd024be6ef Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Thu, 22 Aug 2019 00:04:45 +0200 Subject: [PATCH] Update readme. Replace podman-compose.py with podman-compose --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a408fbd..9089af7 100644 --- a/README.md +++ b/README.md @@ -44,23 +44,23 @@ By using many containers on a single pod that shares the network (services talk via localhost): ``` -./podman-compose.py -t 1podfw -f examples/awx3/docker-compose.yml up +podman-compose -t 1podfw -f examples/awx3/docker-compose.yml up ``` Or by reusing a container network and `--add-host`: ``` -$ ./podman-compose.py -t cntnet -f examples/awx3/docker-compose.yml up +podman-compose -t cntnet -f examples/awx3/docker-compose.yml up ``` Or by using host network and localhost works as follows: ``` -$ ./podman-compose.py -t hostnet -f examples/awx3-hostnet-localhost/docker-compose.yml up +podman-compose -t hostnet -f examples/awx3-hostnet-localhost/docker-compose.yml up ``` ### Work in progress ``` -./podman-compose.py -t 1pod -f examples/awx3/docker-compose.yml up +podman-compose -t 1pod -f examples/awx3/docker-compose.yml up ```