SQL Server Reporting Services in Docker container
10K+
creates a fresh install of SSRS in a container - pretty useful for dev / test - not for production use!
https://github.com/phola/SSRS-Docker
This sample is uses mssql-server-windows-developer as a parent image and accepts all the commands listed there:
https://github.com/Microsoft/mssql-docker/tree/master/windows/mssql-server-windows-developer
In addtion it accepts two more env variables:
example:
docker run -d -p 1433:1433 -p 80:80 -v C:/temp/:C:/temp/ -e sa_password=<YOUR SA PASSWORD> -e ACCEPT_EULA=Y -e ssrs_user=SSRSAdmin -e ssrs_password=<YOUR SSRSAdmin PASSWORD> --memory 6048mb phola/ssrs
then access SSRS at http://localhost/reports and login using ssrs_user
SSRS is defintely not supported in containers..
MIT license. See the LICENSE file for more details.
Content type
Image
Digest
Size
5.8 GB
Last updated
over 7 years ago
docker pull phola/ssrs