Sign inSign up

sathishsagent/ssrs

By sathishsagent

Updated about 4 years ago

SQL Server Reporting Services in Docker

Image
0

267

sathishsagent/ssrs repository overview

SQL Server Reporting Services in Docker

creates a fresh install of SSRS in a container - pretty useful for dev / test - not for production use!

https://hub.docker.com/r/phola/ssrs

Run it

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:

  • ssrs_user: Name of a new admin user that will be created to login to report server
  • ssrs_password: Sets the password for the admin user

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 sathishsagent/ssrs

then access SSRS at http://localhost/reports and login using ssrs_user

Tips

  • -p 80:80 to access report manager in browser
  • --memory 6048mb to bump RAM

Tag summary

Content type

Image

Digest

sha256:7fd943086

Size

5.8 GB

Last updated

about 4 years ago

docker pull sathishsagent/ssrs