1b1f0ed951
- Reduce the build steps to reduce the number and size of intermediate images - Set the logging to stdout by default - Remove default user create, but still allow optional user creation - Fix entrypoint command setup
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$LOCAL" -a "$PASSWORD" -a "$DOMAIN" ] ; then
|
|
prosodyctl register $LOCAL $DOMAIN $PASSWORD
|
|
fi
|
|
|
|
exec "$@"
|