Skip to content

Troubleshooting

Status

Use docker compose ps to show the status of components.

Example

cd /opt/synkzone/{world,organization}
docker compose ps     # show running components
docker compose ps -a  # include stopped components

Resource usage

Use docker compose stats to show container resource usage statistics.

Example

cd /opt/synkzone/{world,organization}
docker compose stats    # show usage statistics

Logs

Use docker compose logs to view the logs of components.

Example

cd /opt/synkzone/{world,organization}
docker compose logs       # view logs for all components
docker compose logs main  # view logs for the main component