OpenVoiceOS / ovos-docker

Open Voice OS container images and docker-compose.yml files for x86_64 and aarch64 CPU architectures.
https://openvoiceos.github.io/ovos-docker/
Apache License 2.0
39 stars 11 forks source link

Add information about log and stdout #20

Closed goldyfruit closed 1 year ago

goldyfruit commented 1 year ago

By default the services will write the logs into a log file under .local directory, this file it not rotated which could lead to disk space issue.

The solution is to add these lines into mycroft.conf, this will tell the services to not create a log file but redirect the logs to the container stdout.

{
  "logs": {
    "path": "stdout"
  }
}

This must be added to the README.md.