Process management
Stop, start and restart the website.
Use dokku to stop, start and restart the docker containers that host the website.
Read more about Dokku Process Management.
To restart the website:
To stop the website:
To start the website after stopping it:
Background tasks
Background tasks (such as updating the search index and ingesting content from remote sources) are run in a separate docker container.
Normally you only need one or two background task runners. If there are many tasks, you can increase the number of task runners to work through the tasks faster.
The number of background task runners does not impact the number of threads or processes serving the website.
For example, to scale up to 3 background task runners, use:
To scale back down to 1, use:
Last updated