--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/33a57c5f-25f6-4f94-9c47-58b2a0b48dd1%40googlegroups.com.
For Flexible, you may check Connecting to the instance page:
To connect to an instance in the console:

This puts the instance into debug mode, and opens an SSH session for the instance in a terminal window.
You can also select different options to start an SSH session from the drop-down list.
sudo docker ps
sudo docker ps command lists each container by row; locate the row that contains your project ID: this is the container running your code. Note the NAME of this container.sudo docker logs [CONTAINER-NAME]
sudo docker exec -it [CONTAINER-NAME] /bin/bash
exit to exit the container, then exit again to exit the SSH session.