mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
16 lines
274 B
Bash
Executable file
16 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
|
|
declare root="${PWD}"
|
|
|
|
if command -v git &>/dev/null; then
|
|
root=$(git rev-parse --show-toplevel)
|
|
fi
|
|
|
|
exec docker run \
|
|
--rm \
|
|
--interactive \
|
|
--tty \
|
|
--volume "${root}:/var/www" \
|
|
--workdir /var/www \
|
|
ghcr.io/jippi/dottie \
|
|
"$@"
|