blob: c8ece9916aa45fcf2beb8b9b584e01e5c0436415 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Azure Data Studio is a data management and development tool with
connectivity to popular cloud and on-premises databases.
Azure Data Studio supports Windows, macOS, and Linux, with immediate
capability to connect to Azure SQL and SQL Server. Browse the
extension library for additional database support options including
MySQL, PostreSQL, and MongoDB.
How to get started with SQL Server 20022 and docker, run:
docker pull mcr.microsoft.com/mssql/server:2022-latest
docker run -e "ACCEPT_EULA=Y" \
-e "MSSQL_SA_PASSWORD=QW3rtyui" \
-p 1433:1433 --name mssql2022 \
-d \
mcr.microsoft.com/mssql/server:2022-latest
Log in with:
Server=localhost,1433
User name=sa
Password=QW3rtyui
Optional dependencies:
docker docker-cli
|