diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-09-27 17:16:28 +0100 |
---|---|---|
committer | Sam Pearson <sam@sgp.me.uk> | 2018-09-28 14:35:46 +0100 |
commit | d5aeacbfeca3b9f07ff846dcb6f877ac4e59095f (patch) | |
tree | d440311c262d4aa300a5abe002dc788874e6296e /bin/docker.preinit | |
parent | d84af0f71aeef0581224c84d74c0372ff0a59877 (diff) |
[Docker] Support for cobrands
This adds a script for loading cobrands into an instance of the
FixMyStreet Docker container.
A directory containing the necessary module, templates, css, etc
should be mapped into the container at `/var/www/fixmystreet/cobrand`
and activated by adding the cobrand to `ALLOWED_COBRANDS` as usual.
See the documentation at https://fixmystreet.org/install/docker
for more details.
Diffstat (limited to 'bin/docker.preinit')
-rw-r--r-- | bin/docker.preinit | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/docker.preinit b/bin/docker.preinit index 12881ef0b..459e89de2 100644 --- a/bin/docker.preinit +++ b/bin/docker.preinit @@ -30,8 +30,11 @@ if ! su $FMS_DB_USER -c "psql -h $FMS_DB_HOST -U $FMS_DB_USER -l | egrep \"^ *${ su $FMS_DB_USER -c "createdb -h $FMS_DB_HOST -U $FMS_DB_USER --owner \"$FMS_DB_USER\" \"$FMS_DB_NAME\"" fi -# Ensure the schema is up-to-date. -su $FMS_DB_USER -c "${FMS_ROOT}/bin/update-schema --commit" +# Slot in cobrand, if one is present +su $FMS_DB_USER -c "${FMS_ROOT}/bin/docker-cobrand" + +# Ensure things are up to date - schema, CSS, etc +su $FMS_DB_USER -c "${FMS_ROOT}/script/update" # Update reports su $FMS_DB_USER -c "${FMS_ROOT}/bin/update-all-reports" |