9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
|
#! /bin/sh
|
||
|
me=$(basename $(pwd))
|
||
|
podman rm $me
|
||
|
podman run \
|
||
|
--name $me \
|
||
|
--network host \
|
||
|
--mount type=bind,src=$(pwd)/Corefile,dst=/home/nonroot/Corefile,readonly=true \
|
||
|
coredns/coredns
|