I build an image with python instaled and a python app to. My python app is a hello world, just printing "Hello World" on screen. Dockerfile:
FROM python:2-onbuild
CMD ["python", "./helloworld.py"]
In the console i execute:
docker run xxx/zzz
i can see the Hello World output. Now i am tryng to execute the same app, using the task from ECS. I already pulled it to Docker Hub. How can I see the output hello world? is the anyway yo see that my container run correctly?