Docker and AWS with MS Sql Server
Docker and AWS with MS Sql Server Docker does not have official MS Sql Server under Images like it should. So you will need to add MS Sql Server as an option. For the latest MS SQL Server - Ubuntu based images to work with Docker: docker pull mcr.microsoft.com/mssql/server:2025-latest as found on: https://hub.docker.com/r/microsoft/mssql-server Then you run: docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=YourStrongPassword" -p 1433:1433 --name sql_server_dev -d mcr.microsoft.com/mssql/server:2025-latest of course changing: YourStrongPassword to be your password. We need to do this with old SQL password rather than Windows Auth, since we will need to be AWS in Ubuntu. When the command is run, a Windows prompt appears that you need to pick "Private networks" as the choice to open the port 1433 locally for Docker. If a problem happens, you need to delete the stuck Docker container and fix the Windows Firewall permission you c...