Files
homepage/tools/sculpin
2017-12-03 12:18:44 +03:00

16 lines
236 B
Bash
Executable File

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