
(Note, I'm specifying the container ID found with docker container ls, and the password used when running the container, yourStrong(!)Password.) 1> USE masterġ> SELECT name, database_id, create_date FROM sys.databases My container is running and I can connect to it and query using sqlcmd: docker exec -it /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P (Note, I'm using double qutes ( ") instead of single quotes ( ') as I'm running on Windows.) To start my container, I used the information shown here: docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=yourStrong(!)Password" -p 1433:1433 -d /mssql/server:2017-CU8-ubuntu

I'm using Docker on Windows, and I have a Docker container with SQL Server running.
