cicd: Ignore errors when creating podman-container target - the container may not exist

This commit is contained in:
jamesread 2022-10-19 15:14:13 +01:00
parent b97e75dd67
commit 434e998151
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ podman-image:
buildah bud -t olivetin buildah bud -t olivetin
podman-container: podman-container:
podman kill olivetin podman kill olivetin || true
podman rm olivetin podman rm olivetin || true
podman create --name olivetin -p 1337:1337 -v /etc/OliveTin/:/config:ro olivetin podman create --name olivetin -p 1337:1337 -v /etc/OliveTin/:/config:ro olivetin
podman start olivetin podman start olivetin