Created
June 18, 2017 18:14
-
-
Save saiberz/f1db58d8ba553fb3ec92f53c54d7f1ac to your computer and use it in GitHub Desktop.
sample sql-server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
sql-server: | |
image: microsoft/mssql-server-linux | |
ports: | |
- 1433:1433 | |
volumes: | |
- /sql-server-data:/var/opt/mssql | |
environment: | |
- SA_PASSWORD=jdev29121985 | |
- ACCEPT_EULA=Y | |
- DEBUG=1 | |
volumes: | |
sql-server-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment