---
title: Verifying the Docker evaluation setup
description: Verify the Docker evaluation setup.
component: pingintelligence
version: 5.2
page_id: pingintelligence:installing_pingintelligence_for_apis:pingintelligence_verify_docker_setup
canonical_url: https://docs.pingidentity.com/pingintelligence/5.2/installing_pingintelligence_for_apis/pingintelligence_verify_docker_setup.html
revdate: April 3, 2024
section_ids:
  about-this-task: About this task
  steps: Steps
  example: Example:
---

# Verifying the Docker evaluation setup

Verify the Docker evaluation setup.

## About this task

The PingIntelligence products are installed in the `/opt/pingidentity` directory within the Docker container.

To verify the setup:

## Steps

1. List all the containers with the `docker ps` command.

2. To get console access for any of the Docker containers, fetch the Container ID of the Docker container using the `docker ps` command output and use it in the following command:

   ```
   #docker exec -it  <docker-container-id>  /bin/bash
   ```

3. To get the service names of the containers, run the following command:

   ```
   #docker service ls
   ```

   The service name is the second column in the output.

4. To check the log of any service, run the following command:

   ```
   #docker service logs  <service name>
   ```

   ### Example:

   The following example shows what this command might look like in your system:

   ```
   # docker service logs pingidentity_ase
   ```
