Factory reset DCT for Docker Compose
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.
This page explains how to factory reset DCT. Factory resetting means deleting all of the configuration and data associated with DCT. Perform this step only if you are absolutely sure about this and understand the implications.
Bring all of the DCT services down with this command:
docker compose down
List all Docker volumes being used and note down the volume names:
docker volume ls
DRIVER VOLUME NAME
local dct_gateway-data
local dct_masking-data
local dct_virtualization-app-data
local dct_gwdatabase-data
Delete the Docker volumes that are listed from the previous command:
docker volume rm dct_gateway-data
docker volume rm dct_gwdatabase-data
docker volume rm dct_masking-data
docker volume rm dct_virtualization-app-data