mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-03 19:53:16 +00:00
14 lines
247 B
Bash
14 lines
247 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
function entrypoint_log() {
|
||
|
if [ -z "${ENTRYPOINT_QUIET_LOGS:-}" ]; then
|
||
|
echo "/docker-entrypoint.sh: $@"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
function as_www_user() {
|
||
|
su --preserve-environment www-data --shell /bin/bash --command "${*}"
|
||
|
}
|