Deleted specific build role. Moved all to general apps role. Make app_list list so tasks can iterate thru list and install each app
19 lines
453 B
Bash
19 lines
453 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
# or first arg is `something.conf`
|
|
if [ "${1#-}" != "$1" ] || [ "${1%.conf}" != "$1" ]; then
|
|
set -- btc_oneshot "$@"
|
|
fi
|
|
|
|
# Allow the container to be started with `--user`, if running as root drop privileges
|
|
if [ "$1" = 'btc_oneshot' -a "$(id -u)" = '0' ]; then
|
|
chown -R bitcoin .
|
|
exec gosu bitcoin "$0" "$@"
|
|
fi
|
|
|
|
# If not root (i.e. docker run --user $USER ...), then run as invoked
|
|
exec "$@"
|
|
|