Bumped version, fixed db-prefix

This commit is contained in:
Dennis Schwerdel 2017-02-23 18:07:50 +01:00
parent 1175cc0d8f
commit a5022969c3
3 changed files with 9 additions and 2 deletions

View File

@ -4,3 +4,9 @@
[0.2.0]
* Updated to base image 0.10.0
* Supporting extensions
[0.3.0]
* No longer overwriting all config changes
* Using cli scripts
* Using scheduler for periodic task
* Removed update menu item

View File

@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "RSS feed reader",
"version": "0.2.0",
"version": "0.3.0",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

View File

@ -11,7 +11,8 @@ if ! [ -f /app/data/.installed ]; then
--environment production --default_user admin \
--db-type mysql --db-host "${MYSQL_HOST}:${MYSQL_PORT}" \
--db-user "${MYSQL_USERNAME}" --db-password "${MYSQL_PASSWORD}" \
--db-base "${MYSQL_DATABASE}"
--db-base "${MYSQL_DATABASE}" --db-prefix ""
php set_config.php # --db-prefix "" seems to be ignored
php cli/create-user.php --user admin --password password --language en
php cli/actualize-user.php --user admin
touch /app/data/.installed