10 lines
143 B
Bash
10 lines
143 B
Bash
#!/bin/sh
|
|
|
|
DOCKER=docker
|
|
PROG_NAME=monolith
|
|
|
|
if which podman 2>&1 > /dev/null; then
|
|
DOCKER=podman
|
|
fi
|
|
|
|
$DOCKER run --rm Y2Z/$PROG_NAME "$@"
|