!Friendica Support Hi all.

Running via Docker behind nginx proxy manager. Got the three containers shown.

The UI is a bit sluggish. In particular, it takes forever for the notifications to show up after doing pretty much anything.

So my question is, is there anything stopping me spinning up another UI or cron container on another machine and trying to parallelise things a bit? Is there anything special I have to do to enable that?

TIA

Friendica Support reshared this.

in reply to Michael πŸ‡ΊπŸ‡¦

@Michael Vogel Should note in case it's not clear, the container called "friendica-cron" is actually running the daemon, starting with this script:

#!/bin/sh
trap "break;exit" HUP INT TERM

while [ ! -f /var/www/html/bin/daemon.php ]; do
  sleep 1
done

echo "Waiting for MySQL $MYSQL_HOST initialization..."
if php /var/www/html/bin/wait-for-connection "$MYSQL_HOST" "${MYSQL_PORT:-3306}" 300; then
  sh /setup_msmtp.sh
  exec gosu www-data:www-data tini -- php /var/www/html/bin/daemon.php -f start
else
  echo "[ERROR] Waited 300 seconds, no response" >&2
fi

Friendica Support reshared this.

⇧