2023-12-28 10:07:43 -07:00
|
|
|
#! /bin/sh
|
2024-11-28 13:36:19 -07:00
|
|
|
|
|
|
|
image=coredns/coredns
|
|
|
|
[ -f upgrade ] && podman pull $image && rm upgrade
|
|
|
|
|
2023-12-28 10:07:43 -07:00
|
|
|
me=$(basename $(pwd))
|
|
|
|
podman rm $me
|
|
|
|
podman run \
|
|
|
|
--name $me \
|
|
|
|
--network host \
|
|
|
|
--mount type=bind,src=$(pwd)/Corefile,dst=/home/nonroot/Corefile,readonly=true \
|
2024-11-28 13:36:19 -07:00
|
|
|
$image
|