Get support

Estimated reading time: 1 minute

These are the docs for UCP version 2.2.4

To select a different version, use the selector below.

Your Docker Enterprise Edition subscription gives you access to prioritized support. The service levels depend on your subscription.

If you need help, you can file a ticket via:

Be sure to use your company email when filing tickets.

Docker Support engineers may ask you to provide a UCP support dump, which is an archive that contains UCP system logs and diagnostic information. To obtain a support dump:

From the UI

  1. Log into the UCP web UI with an administrator account.
  2. In the top-left menu, click your username and choose Download Logs.

From the CLI

To get the support dump from the CLI, use SSH to log into a UCP manager node and run:

docker container run --rm \
  --name ucp \
  -v /var/run/docker.sock:/var/run/docker.sock \
  --log-driver none \
  docker/ucp:2.2.4 \
  support > docker-support.tgz

This support dump only contains logs for the node where you’re running the command. If your UCP is highly available, you should collect support dumps from all of the manager nodes.

On Windows worker nodes, run the following command to generate a local support dump:

PS> docker container run --name windowssupport -v 'C:\ProgramData\docker\daemoncerts:C:\ProgramData\docker\daemoncerts' -v 'C:\Windows\system32\winevt\logs:C:\eventlogs:ro' docker/ucp-dsinfo-win:2.2.4; docker cp windowssupport:'C:\dsinfo' .; docker rm -f windowssupport

This command creates a directory named dsinfo in your current directory. If you want an archive file, you need to create it from the dsinfo directory.

support, help