mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
11 lines
180 B
Bash
Executable file
11 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#dir="$( dirname -- "$( readlink -f -- "$0"; )"; )"
|
|
dir="$PWD"
|
|
|
|
app=$(which podman)
|
|
if [ -z $app ]; then
|
|
app="docker"
|
|
fi
|
|
|
|
$app run -it --rm -v "$dir:/app" composer $@
|