2
0
mirror of https://github.com/Y2Z/monolith synced 2024-11-10 19:10:29 +00:00
monolith/dist/run-in-container.sh

11 lines
143 B
Bash
Raw Normal View History

#!/bin/sh
DOCKER=docker
PROG_NAME=monolith
if which podman 2>&1 > /dev/null; then
DOCKER=podman
fi
2021-07-11 18:07:48 +00:00
$DOCKER run --rm Y2Z/$PROG_NAME "$@"