From a758e49145b64e148b0b52137f037709cd844906 Mon Sep 17 00:00:00 2001 From: Cody Brannan Date: Sun, 7 Feb 2021 10:48:06 -0500 Subject: [PATCH] Correct cidfile typo --- Using-Podman.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Using-Podman.md b/Using-Podman.md index 56e5d6b..b8e20c0 100644 --- a/Using-Podman.md +++ b/Using-Podman.md @@ -35,7 +35,7 @@ If we want to create a new container every time the service starts we can edit t [Service] Restart=on-failure ExecStartPre=/usr/bin/rm -f /%t/%n-pid /%t/%n-cid -ExecStart=/usr/bin/podman run --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-pid --env-file=/home/spytec/Bitwarden/bitwarden.conf -d -p 8080:8080 -v /home/spytec/Bitwarden/bw-data:/data/:Z bitwardenrs/server:latest +ExecStart=/usr/bin/podman run --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid --env-file=/home/spytec/Bitwarden/bitwarden.conf -d -p 8080:8080 -v /home/spytec/Bitwarden/bw-data:/data/:Z bitwardenrs/server:latest ExecStop=/usr/bin/podman rm -f --cidfile /%t/%n-cid KillMode=none Type=forking