Skip to content

Instantly share code, notes, and snippets.

@hakanbaysal
Created February 28, 2023 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakanbaysal/19b2cfc86c58694b775fc08e0c3b4693 to your computer and use it in GitHub Desktop.
Save hakanbaysal/19b2cfc86c58694b775fc08e0c3b4693 to your computer and use it in GitHub Desktop.
Run SQL Server in a Docker Container
version: "3.9"
services:
mssql:
image: mcr.microsoft.com/azure-sql-edge:latest
volumes:
- ./mssql:/var/opt/mssql
ports:
- 1433:1433
environment:
- ACCEPT_EULA=1
- MSSQL_SA_PASSWORD=Passw@rd
volumes:
mssql:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment