Skip to content

Instantly share code, notes, and snippets.

@croblesm
Last active March 16, 2020 23:45
Show Gist options
  • Save croblesm/c924bde49f5b97e3915f429b43524801 to your computer and use it in GitHub Desktop.
Save croblesm/c924bde49f5b97e3915f429b43524801 to your computer and use it in GitHub Desktop.

MCR - SQL Server images

Ubuntu based images

Bash πŸ‘‡

curl -L https://mcr.microsoft.com/v2/mssql/server/tags/list/

Powershell πŸ‘‡ πŸ”ŒπŸš

$ubuntu_response=Invoke-WebRequest -URI https://mcr.microsoft.com/v2/mssql/server/tags/list/
$ubuntu_response.content

RHEL based images

Bash πŸ‘‡

curl -L https://mcr.microsoft.com/v2/mssql/rhel/server/tags/list/

Powershell πŸ‘‡ πŸ”ŒπŸš

$rhel_response = Invoke-WebRequest -URI https://mcr.microsoft.com/v2/mssql/rhel/server/tags/list/
$rhel_response.content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment