SQL 2019 windows container with 2 mounted volumes "c:\sqldata" and "c:\servicengine"
10K+
after pulling:
Make sure "c:\sqldata" and "c:\servicengine" exists first (all lower case)
run develoepr version of sql server 2019:
docker run --name SQLServer -p 1433:1433 --storage-opt size=100G --volume c:\sqldata:c:\sqldata --volume c:\servicengine:c:\servicengine -e sa_password=P@ssw0rd -e ACCEPT_EULA=Y -d mantici/se_sql2019
if you need to limit the CPU and memory usage of this container, add in --memory="1g" --cpus="4.0" (change values as applicable) - these settings should go right before the --volume settings
Content type
Image
Digest
Size
2.8 GB
Last updated
over 5 years ago
docker pull mantici/se_sql2019