Hi all! Is there any possibility to get logs from ...
# general
h
Hi all! Is there any possibility to get logs from docker container when using pulumi?
d
I think pulumi logs -f will do that - It definitely does it from me on pulumi / ecs / docker One thing you need to make sure is that your cloudwatch groups / logs are setup properly for the service/task (or whatever else you are using) - and first check logs in AWS console
b
What Antonio suggests will work for AWS cloudwatch logs, but if you're running docker on your local machine (or in fact anywhere), we're not doing anything special so you can view the docker logs in the same way you would before you started using Pulumi
d
oh yes sorry I assumed you were in #aws haha -
docker logs -f containerId
command in fact works on local -