12 lines
328 B
Bash
12 lines
328 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# The Invoice Ninja logo on PDF invoices is always loaded from upstream's
|
|
# server, despite the APP_URL setting.
|
|
sed -i \
|
|
-e 's@invoicing.co/images/new_logo.png@invoiceninja.pyrocufflink.blue/images/logo.png@' \
|
|
/var/www/app/app/Utils/HtmlEngine.php
|
|
|
|
exec /usr/local/bin/docker-entrypoint supervisord
|