fix: ensure that pod can be created from scratch
This commit is contained in:
parent
a4f9f3e2ab
commit
15f2c6c534
1 changed files with 2 additions and 2 deletions
4
pod.sh
4
pod.sh
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
podman pod exists services
|
podman pod exists services || true
|
||||||
test $? -eq 0 || podman pod create services
|
test $? -eq 0 || podman pod create -p 8080:8080 -p 6881:6881/udp -p 6881:6881 -p 8112:8112 services
|
||||||
|
|
Reference in a new issue