Skip to content

Instantly share code, notes, and snippets.

@edgaryahir-angeles
Last active January 6, 2021 00:43
Show Gist options
  • Save edgaryahir-angeles/6d7ba034944e495055f7edaf6ac187b6 to your computer and use it in GitHub Desktop.
Save edgaryahir-angeles/6d7ba034944e495055f7edaf6ac187b6 to your computer and use it in GitHub Desktop.
Conectar Azure Studio SQL Server
Se instala Docker
Se instala Azure Data Studio se debe configurar en la terminal
Se instala SQL Server
sudo docker pull mcr.microsoft.com/mssql/server:2019-latest
This downloads the latest SQL Server 2019 for Linux Docker image to your computer.
Launch Docker Image
Run the following command to launch an instance of the Docker image you just downloaded:
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Password123" -p 1433:1433 --name sql_server_linux -d mcr.microsoft.com/mssql/server:2019-latest
Conectar
Server: localhost, 1433
Autentication Type: SQL Login
User: sa
Password: Password123
https://www.freecodecamp.org/news/cjn-how-to-connect-your-microsoft-sql-server-docker-container-with-azure-data-studio/
https://dev.to/adeyemiadekore2/how-to-setup-mssql-on-mac-linux-os-using-docker-and-azure-data-studio-2p6m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment