This option deploys Logwiz together with a bundled Quickwit instance. Best for getting started quickly or running a self-contained setup.Download the Compose file and start both services:
curl -O https://raw.githubusercontent.com/oleksandr-zhyhalo/logwiz-docs/main/files/docker-compose.ymldocker compose up -d
By default, the self-contained deployment stores index data in the quickwit-data Docker volume on local disk. This is fine for testing, but removing the volume permanently deletes all indexed logs. For a persistent, production-ready setup, configure Quickwit to store index data in S3 (or any S3-compatible object storage).Add the following environment variables to the quickwit service in your docker-compose.yml:
Set both variables to paths within the same bucket. The bucket must already exist. See Quickwit storage configuration for all options, including S3-compatible providers and custom endpoints.
If other services on your internal network need to ingest data directly into Quickwit, you can change the port bindings to listen on all interfaces. In docker-compose.yml, update the quickwit port bindings from:
Quickwit will then be reachable at http://<host-ip>:7280 from other machines on the same network.
Quickwit has no authentication mechanism. Never expose it on a public or untrusted network — restrict access at the network or firewall level and only do this within a private, trusted network.
Customize the deployment by setting environment variables under the environment key of the logwiz service. See the environment variables reference for the full list, including admin credentials, rate limits, and authentication settings.
Change LOGWIZ_ADMIN_PASSWORD from its default value before exposing Logwiz beyond your local machine.