Bumped version, fixed db-prefix
This commit is contained in:
parent
1175cc0d8f
commit
a5022969c3
|
@ -4,3 +4,9 @@
|
||||||
[0.2.0]
|
[0.2.0]
|
||||||
* Updated to base image 0.10.0
|
* Updated to base image 0.10.0
|
||||||
* Supporting extensions
|
* Supporting extensions
|
||||||
|
|
||||||
|
[0.3.0]
|
||||||
|
* No longer overwriting all config changes
|
||||||
|
* Using cli scripts
|
||||||
|
* Using scheduler for periodic task
|
||||||
|
* Removed update menu item
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "RSS feed reader",
|
"tagline": "RSS feed reader",
|
||||||
"version": "0.2.0",
|
"version": "0.3.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
3
start.sh
3
start.sh
|
@ -11,7 +11,8 @@ if ! [ -f /app/data/.installed ]; then
|
||||||
--environment production --default_user admin \
|
--environment production --default_user admin \
|
||||||
--db-type mysql --db-host "${MYSQL_HOST}:${MYSQL_PORT}" \
|
--db-type mysql --db-host "${MYSQL_HOST}:${MYSQL_PORT}" \
|
||||||
--db-user "${MYSQL_USERNAME}" --db-password "${MYSQL_PASSWORD}" \
|
--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/create-user.php --user admin --password password --language en
|
||||||
php cli/actualize-user.php --user admin
|
php cli/actualize-user.php --user admin
|
||||||
touch /app/data/.installed
|
touch /app/data/.installed
|
||||||
|
|
Loading…
Reference in New Issue