I'm not sure if it's an issue.
I try to stream container logs using the docker-py client.
I noticed I have no logs when my container is started without -t.
logs = container.logs(stream=True, follow=True, stdout=True, stderr=False, tail=0)
Even if I can show them using this command docker logs -f <container>
I'm not sure if it's an issue.
I try to stream container logs using the docker-py client.
I noticed I have no logs when my container is started without
-t.Even if I can show them using this command
docker logs -f <container>