To troubleshoot connectivity tier issues, users can test network speeds via a sample Docker container. Here’s how:
Pull the Python 3.9 Slim container:
docker pull python:3.9-slim
Run the container:
docker run -it --name speedtest-container python:3.9-slim /bin/bash
Install the speedtest tool:
pip install speedtest-cli
Test the network speed:
speedtest-cli
We recommend running similar speed tests periodically within your containers to monitor connectivity performance. You can also guide users on how to perform these tests at regular intervals or during specific instances for troubleshooting.