Created
May 2, 2024 13:04
-
-
Save skylock/a2b5ab5c8f3a1450b4d39d58710a8986 to your computer and use it in GitHub Desktop.
MSSQL 2017
This file contains 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: '3.4' | |
services: | |
db: | |
image: "mcr.microsoft.com/mssql/server:2017-latest" | |
container_name: "monetoplus-mssql" | |
ports: | |
- "1433:1433" | |
environment: | |
SA_PASSWORD: "Pass@word" | |
ACCEPT_EULA: "Y" | |
volumes: | |
- mssql_data:/var/opt/mssql/data | |
volumes: | |
mssql_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment