11 lines
565 B
Plaintext
11 lines
565 B
Plaintext
## Controlling container services
|
|
When the environment variable `POSTIZ_APPS` is not set, or is set to an empty string, all
|
|
services will be started in a single container. This is normally fine for small, personal deployments.
|
|
|
|
However, you can only start specific services within the docker container by changing this environement variable.
|
|
|
|
If you need to scale, you can experiement with having multiple containers defined like;
|
|
- Frontend only: `POSTIZ_APPS="frontend"`
|
|
- Backend only: `POSTIZ_APPS="backend"`
|
|
- Worker and Cron only: `POSTIZ_APPS="worker cron"`
|