Skip to content

Instantly share code, notes, and snippets.

@jinhoyim
Last active January 4, 2021 15:14
Show Gist options
  • Select an option

  • Save jinhoyim/37e29ba4888c5068d6886b0140a08fc4 to your computer and use it in GitHub Desktop.

Select an option

Save jinhoyim/37e29ba4888c5068d6886b0140a08fc4 to your computer and use it in GitHub Desktop.
docker-compose for SqlServer(MSSQL)
version: '3.9'
services:
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
hostname: mssql
ports:
- "1433:1433"
environment:
- ACCEPT_EULA=Y
- MSSQL_SA_PASSWORD=${MSSQL_SA_PASSWORD}
- MSSQL_PID=Developer
- TZ=Asia/Seoul
volumes:
- data:/var/opt/mssql
volumes:
data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment