10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
docker run -it \
|
|
-u "$(id -u):$(id -g)" \
|
|
-v "$PWD:/app" \
|
|
-w "/app" \
|
|
dayoff-crystal shards "$@"
|