mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
update dottie
This commit is contained in:
parent
f264dd1cbb
commit
193d536ca1
1 changed files with 4 additions and 3 deletions
|
@ -1,16 +1,17 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
declare root="${PWD}"
|
declare project_root="${PWD}"
|
||||||
|
|
||||||
if command -v git &>/dev/null; then
|
if command -v git &>/dev/null; then
|
||||||
root=$(git rev-parse --show-toplevel)
|
project_root=$(git rev-parse --show-toplevel)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec docker run \
|
exec docker run \
|
||||||
--rm \
|
--rm \
|
||||||
--interactive \
|
--interactive \
|
||||||
--tty \
|
--tty \
|
||||||
--volume "${root}:/var/www" \
|
--volume "${project_root}:/var/www" \
|
||||||
|
--volume "/tmp:/tmp" \
|
||||||
--workdir /var/www \
|
--workdir /var/www \
|
||||||
ghcr.io/jippi/dottie \
|
ghcr.io/jippi/dottie \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
Loading…
Reference in a new issue