From e1bc03f5a1d6631ca009858c42fcc8fa1e9222ef Mon Sep 17 00:00:00 2001 From: Dev Kumar Date: Wed, 16 Nov 2022 08:45:04 -0500 Subject: [PATCH] website: fixed structure of compose doc (#837) Signed-off-by: Dev Kumar Signed-off-by: Dev Kumar --- .../img/image2.png => img/compose_doc_image_1.png} | Bin .../img/image1.png => img/compose_doc_image_2.png} | Bin .../img/image4.png => img/compose_doc_image_3.png} | Bin .../img/image3.png => img/compose_doc_image_4.png} | Bin website/docs/{compose => }/podman-compose.md | 10 +++++----- 5 files changed, 5 insertions(+), 5 deletions(-) rename website/docs/{compose/img/image2.png => img/compose_doc_image_1.png} (100%) rename website/docs/{compose/img/image1.png => img/compose_doc_image_2.png} (100%) rename website/docs/{compose/img/image4.png => img/compose_doc_image_3.png} (100%) rename website/docs/{compose/img/image3.png => img/compose_doc_image_4.png} (100%) rename website/docs/{compose => }/podman-compose.md (94%) diff --git a/website/docs/compose/img/image2.png b/website/docs/img/compose_doc_image_1.png similarity index 100% rename from website/docs/compose/img/image2.png rename to website/docs/img/compose_doc_image_1.png diff --git a/website/docs/compose/img/image1.png b/website/docs/img/compose_doc_image_2.png similarity index 100% rename from website/docs/compose/img/image1.png rename to website/docs/img/compose_doc_image_2.png diff --git a/website/docs/compose/img/image4.png b/website/docs/img/compose_doc_image_3.png similarity index 100% rename from website/docs/compose/img/image4.png rename to website/docs/img/compose_doc_image_3.png diff --git a/website/docs/compose/img/image3.png b/website/docs/img/compose_doc_image_4.png similarity index 100% rename from website/docs/compose/img/image3.png rename to website/docs/img/compose_doc_image_4.png diff --git a/website/docs/compose/podman-compose.md b/website/docs/podman-compose.md similarity index 94% rename from website/docs/compose/podman-compose.md rename to website/docs/podman-compose.md index 7a1889b0928..211ba086597 100644 --- a/website/docs/compose/podman-compose.md +++ b/website/docs/podman-compose.md @@ -1,5 +1,5 @@ --- -title: Using Podman Compose with Podman Desktop +title: Using Compose with Podman Desktop --- ## Introduction @@ -53,21 +53,21 @@ podman-compose -f compose.yaml up -d ``` The `compose.yaml` file contains definitions for multiple containers within the `flask-redis` project. -![img1](img/image2.png) +![img1](img/compose_doc_image_1.png) ### 3. Manage Compose with Podman Desktop In order to check if the containers are running as expected, open Podman Desktop and click on the ‘Containers’ option on the left side of the application. You will notice that the containers are bundled together under a Pod named `flask-redis (compose)` in this case. Here, the compose within the bracket indicates that it is generated from a Compose YAML file. -![img2](img/image1.png) +![img2](img/compose_doc_image_2.png) You can further configure or work with these containers within the Podman Desktop application now that they are visible. Here, clicking on the ‘Open Browser’ button allows us to check if the application is running as expected. -![img3](img/image4.png) +![img3](img/compose_doc_image_3.png) You can do much more such as checking logs, opening the terminal or inspecting the files for more details. -![img4](img/image3.png) +![img4](img/compose_doc_image_4.png) ## Conclusion