mirror of
https://github.com/plausible/analytics.git
synced 2024-11-28 13:02:53 +03:00
18 lines
235 B
Bash
18 lines
235 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
chmod a+x /app/*.sh
|
||
|
|
||
|
if [[ "$1" = 'run' ]]; then
|
||
|
exec gosu plausibleuser /app/bin/plausible start
|
||
|
|
||
|
elif [[ "$1" = 'db' ]]; then
|
||
|
exec gosu plausibleuser /app/"$2".sh
|
||
|
else
|
||
|
exec "$@"
|
||
|
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|
||
|
|