From d89837fbec0261e6c3f98fe8a396f713b417440b Mon Sep 17 00:00:00 2001 From: Ganna Zhyrnova <112796922+gannazhyrnova@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:09:11 +0200 Subject: [PATCH 1/2] podman.md Grammar check --- docs/gemstones/containers/podman.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/gemstones/containers/podman.md b/docs/gemstones/containers/podman.md index b659b26445..27d1ad3062 100644 --- a/docs/gemstones/containers/podman.md +++ b/docs/gemstones/containers/podman.md @@ -1,7 +1,7 @@ --- title: Podman author: Neel Chauhan -contributors: Steven Spencer +contributors: Steven Spencer, Ganna Zhyrnova date: 2024-03-07 tags: - docker @@ -28,7 +28,7 @@ Let us run a [Nextcloud](https://nextcloud.com/) self-hosted cloud platform as a podman run -d -p 8080:80 nextcloud ``` -You will receive a prompt to select the container registry to download from. We will use `docker.io/library/nextcloud:latest` in our example. +You will receive a prompt to select the container registry to download. In our example, we will use `docker.io/library/nextcloud:latest`. Once you have downloaded the Nextcloud container, it will run. @@ -38,7 +38,7 @@ Enter **ip_address:8080** in your web browser (assuming you opened the port in ` ## Running containers as `systemd` services -As mentioned earlier, you can run Podman containers as `systemd` services. Let us now do it with Nextcloud. Run: +As mentioned, you can run Podman containers as `systemd` services. Let us now do it with Nextcloud. Run: ```bash podman ps @@ -50,7 +50,7 @@ You will get a list of running containers: 04f7553f431a docker.io/library/nextcloud:latest apache2-foregroun... 5 minutes ago Up 5 minutes 0.0.0.0:8080->80/tcp compassionate_meninsky ``` -To make a `systemd` container and enable it on reboot, run: +To make a `systemd` container and enable it on reboot, run the following: ```bash podman generate systemd --name compassionate_meninsky > /usr/lib/systemd/system/nextcloud.service From 561c1555a5dbc61ca8ee7259dd27a827203cf646 Mon Sep 17 00:00:00 2001 From: Antoine Le Morvan Date: Thu, 14 Mar 2024 17:14:33 +0100 Subject: [PATCH 2/2] Update docs/gemstones/containers/podman.md --- docs/gemstones/containers/podman.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gemstones/containers/podman.md b/docs/gemstones/containers/podman.md index 27d1ad3062..ccfca61ad3 100644 --- a/docs/gemstones/containers/podman.md +++ b/docs/gemstones/containers/podman.md @@ -28,7 +28,7 @@ Let us run a [Nextcloud](https://nextcloud.com/) self-hosted cloud platform as a podman run -d -p 8080:80 nextcloud ``` -You will receive a prompt to select the container registry to download. In our example, we will use `docker.io/library/nextcloud:latest`. +You will receive a prompt to select the container registry to download from. In our example, we will use `docker.io/library/nextcloud:latest`. Once you have downloaded the Nextcloud container, it will run.