Question: I'm setting up different Podman and Docker based Containers for SQL Server. I'd like to know , how can I identify the SQL Server version & build number , if I'm using the mcr.microsoft.com/mssql/server:2019-latest convention, when choosing which image to use? Based on the information it isn't possible to tell the version and build numbers An example podman command: docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=myPassw0rd" \ -p 1433:1433 --name sql1 \ -d mcr.microsoft.com/mssql/server:2019-latest Answer: It is possible grab the version number , build and some other information which may be useful Execute this Podman command. Note: you can also...
Read more →