10 lines
136 B
Bash
Executable file
10 lines
136 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
distro="$1"
|
|
|
|
podman run \
|
|
--replace \
|
|
--name "en-$distro" \
|
|
--publish 3008:80 \
|
|
"en-$distro"
|