homepage/tools/sculpin

16 lines
247 B
Bash
Executable File

#!/bin/bash
source .env
docker run \
--rm \
--interactive \
--tty \
--init \
--user "$UID:$(id -g)" \
--volume="$PWD:/srv/app" \
--expose=8000 \
--publish=8000:8000 \
"${PHP_IMAGE}" \
./vendor/bin/sculpin "$@"