The **SA** account is a system administrator on the SQL Server instance that's created during setup. After you create your SQL Server container, the `MSSQL_SA_PASSWORD` environment variable you specified is discoverable by running `echo $MSSQL_SA_PASSWORD` in the container. For security purposes, change your SA password: 1. Choose a strong password to use for the SA user. 1. Use `docker exec` to run the **sqlcmd** utility to change the password through a Transact-SQL statement. Replace `` and `` with your own password values: ```bash sudo docker exec -it sql1 /opt/mssql-tools/bin/sqlcmd \ -S localhost -U SA -P '' \ -Q 'ALTER LOGIN SA WITH PASSWORD=""' ``` ```PowerShell docker exec -it sql1 /opt/mssql-tools/bin/sqlcmd ` -S localhost -U SA -P "" ` -Q "ALTER LOGIN SA WITH PASSWORD=''" ```