Skip to main content
Skip table of contents

Docker logs

Delphix has announced the depreciation of support for Docker Compose with DCT version 13.0.0. The January 2024 release starts a 12-month depreciation period for all supported versions on Docker Compose. All prior and current product versions will continue to be supported on Docker Compose until January 2025. However, production DCT workloads in Docker Compose are not supported. 

It is highly recommended that new DCT installations are performed on Kubernetes or OpenShift

DCT leverages the Docker logging infrastructure. All containers log to stdout and stderr so that they are processed by Docker. Docker supports logging drivers for a variety of tools, such as Fluentd, Amazon CloudWatch, and Splunk.

Use the Configure logging drivers Docker article to configure them – these changes will need to be made to the docker-compose.yaml file. This section of the Docker article explains how to alter the Compose file to adjust the logging driver. For example, to use syslog for the proxy container, it would appear as follows.

NONE
services:
    proxy:
        logging:
            driver: syslog
            options:
                syslog-address: "tcp://192.123.1.23:123"
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.