cicd: Ignore errors when creating podman-container target - the container may not exist
This commit is contained in:
parent
b97e75dd67
commit
434e998151
4
Makefile
4
Makefile
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue