How to get Exim4 version info from Docker image

Hellou everyone.
As a newbie for Docker, could You help Me to find My Exim4 version wich is running as a Docker Image ?

All help appreciated.

thx.
k

Which image? checked docker logs when it starts?

first you can go inside the container by using this command
docker exec -it container_name_or_id /bin/bash or
docker exec -it container_name_or_id /bin/sh

Once you are inside the container’s shell, you can use
exim -bV

hope this may be help you

Thx for quick Answers !
These got me going and to the goal !

k