The project has a Dockerfile and a Compose file to generate the SQL Server Backup image the way you want. Run docker build -t restored-db:1.0.0 . followed by docker run -p 11433:1433 --name ...
All restore logic is implemented in custom Ansible Python modules.
Trying to restore a SQL .bak file created from one SQL server (2008) to a new database on another SQL server (2012). It's failing and saying that it is unable to get exclusive rights. Here's what I ...