To troubleshoot and fix issues in an APS connector as explained in the Testing and Debugging document, enter the respective Docker container.
When creating a container, enter:
# docker run -i -t <image-name> /bin/bash
In this command:
-t
- assigns a pseudo-tty (terminal) inside the new container
-i
- sets the interactive connection by grabbing the standard input (STDIN) of the container
To exit the container, run the exit
command or press CTRL-D.
To enter it again:
# docker exec -i -t <container-id> /bin/bash