Skip to content

Instantly share code, notes, and snippets.

@tranductam2802
Created August 6, 2023 06:55
Show Gist options
  • Save tranductam2802/321829cf00f2a369bf29d4759b996688 to your computer and use it in GitHub Desktop.
Save tranductam2802/321829cf00f2a369bf29d4759b996688 to your computer and use it in GitHub Desktop.
Sample of docker compose for SQL Server
version: '3.3'
services:
mssql:
container_name: sql-server
image: mcr.microsoft.com/mssql/server:2022-latest
restart: always
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "dothuthao1993"
ports:
- 1433:1433
volumes:
- sql-server-volume:/var/opt/mssql
volumes:
sql-server-volume:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment