mirror of
https://github.com/docker/docs.git
synced 2026-04-05 02:38:52 +07:00
* Add CLI instructions to create UCP support dump Fixes #1648 Signed-off-by: Tom Barlow <tomwbarlow@gmail.com> * Make image specific to version
41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
---
|
|
description: Your Docker subscription gives you access to prioritized support. You
|
|
can file tickets via email, your the support portal.
|
|
keywords: Docker, support, help
|
|
title: Get support
|
|
---
|
|
|
|
Your Docker Data Center, or Universal Control Plane subscription gives you
|
|
access to prioritized support. The service levels depend on your subscription.
|
|
|
|
If you need help, you can file a ticket via:
|
|
|
|
* [Email](mailto:support@docker.com)
|
|
* [Docker support page](https://support.docker.com/)
|
|
|
|
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 UI with an administrator account.
|
|
2. On the top-right menu, **click your username**, and choose **Support Dump**.
|
|
|
|
{: .with-border}
|
|
|
|
## From the CLI
|
|
|
|
To get the support dump from the CLI, use SSH to log into a UCP manager node
|
|
and run:
|
|
|
|
```none
|
|
docker run --rm \
|
|
--name ucp \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
{{ page.docker_image }} \
|
|
support > docker-support.tgz
|
|
```
|