Skip to content

Instantly share code, notes, and snippets.

@ManfredLange
Created November 1, 2020 04:10
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 ManfredLange/bef5ca3f0325fa6870792449a2d68d18 to your computer and use it in GitHub Desktop.
Save ManfredLange/bef5ca3f0325fa6870792449a2d68d18 to your computer and use it in GitHub Desktop.
Adding SQL Server to Dev Container Setup
version: '3.7'
services:
cmdline-dev:
build:
context: .
working_dir: /app
volumes:
- "..:/app"
command: sleep infinity
database:
image: mcr.microsoft.com/mssql/server
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=PassWord42
ports:
- 7610:1433
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment