1# this template should be included close to the beginning, before setup.yml
2# the container needs time to come up or the sqlcmd operation in setup.yml will have a login timeout
3steps:
4  - script: docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" -p 1433:1433 --name sql1 -h sql1 -d mcr.microsoft.com/mssql/server:2019-CU8-ubuntu-16.04
5    displayName: 'Start MSSQL container'
6