If you need to troubleshoot and fix some issues in an APS connector as explained in the Testing and Debugging document, enter inside 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 containerTo exit the container, run the exit
command or enter CTRL-D.
To enter again:
# docker exec -i -t <container-id> /bin/bash